kernel支持:
由linux支持,进程崩溃时记录存储堆栈空间,寄存器等相关内容,保留致命现场数据,便于分析查找根源。
编译项:
Symbol: COREDUMP [=y]
Type : boolean
Prompt: Enable core dump support
Location:
(1) -> Userspace binary formats
Defined at fs...
分类:
移动开发 时间:
2015-07-16 09:47:56
阅读次数:
190
1、 Android dvm的进程和Linux的进程, 应用程序的进程是否为同一个概念DVM指dalivk的虚拟机。每一个Android应用程序都在它自己的进程中运行,都拥有一个独立的Dalvik虚拟机实例。而每一个DVM都是在Linux 中的一个...
分类:
移动开发 时间:
2015-07-15 15:21:41
阅读次数:
129
dynamic_cast dynamic_cast conversion http://en.cppreference.com/w/cpp/language/dynamic_cast typeid std::type_index http://en.cppreference.com/w/cpp/language/typeid Standard library header?<typein...
分类:
其他好文 时间:
2015-07-14 11:57:37
阅读次数:
132
一、DDMS的使用DDMS的全称是DalvikDebugMonitorService,是Android开发环境中的Dalvik虚拟机调试监控服务。它为我们提供例如:为测试设备截屏,针对特定的进程查看正在运行的线程以及堆信息、Logcat、广播状态信息、模拟电话呼叫、接收SMS、虚拟地理坐标等等。进入DDMS之后,界..
分类:
移动开发 时间:
2015-07-14 06:16:55
阅读次数:
225
问题:
[2015-07-13 16:08:25 - Dex Loader] Unable to execute dex: Multiple dex files define Lcom/loopj/android/http/AsyncHttpClient$1;
[2015-07-13 16:08:25 - AhStu] Conversion to Dalvik format failed: U...
分类:
移动开发 时间:
2015-07-13 18:45:38
阅读次数:
402
错误:Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceI...
分类:
移动开发 时间:
2015-07-12 17:16:35
阅读次数:
146
/*
Modify the temperature conversion program to print the table in reverse order,
that is, from 300 degrees to 0.
*/
#include
/* print Fahrenheit-Celsius table in reverse order */
main()
{
int...
分类:
其他好文 时间:
2015-07-11 20:16:44
阅读次数:
164
/*
Modify the temperature conversion program to print a heading above the table.
*/
#include
/* print fahrenheit-Celsius table for fahr = 0, 20, ..., 300; floating-point
version */
main()
{
fl...
分类:
其他好文 时间:
2015-07-11 18:26:47
阅读次数:
147
首先查看网页源码,查找 charset 将不是utf-8的设置为utf8 //?替换网页源码中不是utf8的编码
NSString?*utf8HtmlStr?=?[html?stringByReplacingOccurrencesOfString:@"<meta?http-equiv=\"Content-Type\"...
分类:
移动开发 时间:
2015-07-10 17:11:16
阅读次数:
192
对于此题,只需要找出对应的字母所在的编号与Z型编码的关系。对于第一行和最后一行进行单处处理。而对中间的numRows-2行,则分奇数列和偶数列进行推导。奇数列从下往上,偶数列从上往下。...
分类:
其他好文 时间:
2015-07-10 11:23:35
阅读次数:
169