多情微笑

文章
9
资源
0
加入时间
2年10月21天

用adb抓取Android App crash日志

手机打开debug模式 手机用数据线连上电脑 打开电脑命令行窗口 输入adbshell如果能出来设备序号,就表示连上手机了 输入exit退出shell adblogcat-c清理缓存日志 adblogcat-vtime*:E>D:/android3.txt 用ctrl+c退出日志捕获 ...

stdlib 标准C 模板库函数

atof语法:#include double atof( const char *str );功能:将字符串str转换成一个双精度数值并返回结果。 参数str 必须以有效数字开头,但是允许以“E”或“e”除外的任意非数字字符结尾。例如:    x = atof( "42.0is_the_answer" );x的值为42.0.相关主题:atoi() and atol