10 2012 档案
摘要:1 /** 2 * 是否为数字 3 */ 4 int isDigit(char ch){ 5 return ch-'0'>=0 && ch -'9'<=0; 6 } 7 /** 8 * 9 */10 int isLetter(char ch){11 return (ch-'a'>=0 && ch-'z'<=0) || (ch-'A'>=0 && ch-'Z'<=0);12 }
阅读全文
摘要:因为编译原理要用到,记录一下。 1 #include <stdio.h> 2 3 int main() 4 { 5 char filename[] = "D:\\阶段性学习\\大三上\\1.课程学习\\编译原理\\0903\\实验二\\test.c"; //文件名 6 FILE *fp; 7 char StrLine[1024]; //每行最大读取的字符数 8 if((fp = fopen(filename,"r")) == NULL) //判断文件是否存在及可读 9 { 10 prin...
阅读全文
摘要:个问题可能是由于Windows资源管理器相对应的.automaticDestinations-ms文件损坏导致。请参照以下步骤对这个问题进行排错:1. 单击开始按钮,点击计算机,复制%AppData%\Microsoft\Windows\Recent\AutomaticDestinations至地址栏按回车。2. 找到1b4dd67f29cb1962.automaticDestinations-ms文件并删除。3. 重新启动计算机,系统会重新生成这个文件,确认问题是否得到解决。参考
阅读全文
摘要:在平常写程序的时候,经常会遇到两个函数,明明传入的参数和传值的值都相同,但就是里面的内容略有不同(也就是业务逻辑稍有不同)。 void f1(int num1,int num2){ console.write("我是f1"); } void f2(int num1,int num2){ console.write("我是f2"); }对于代码略有不同的函数,经常的一个处理方案是:通过增加一个参数,传入一个值,然后进行判断,以便正确地选用那一点点不同的处理。(如下面片段) void f(int num1,int num2,bool ...
阅读全文
摘要:10-05 23:39:48.187: E/AndroidRuntime(12854): Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.10-05 23:39:48.187: E/AndroidRuntime(12854): at android.view.ViewGroup.addViewInner(ViewGroup.java:1976)10-05
阅读全文
摘要:10-04 17:43:05.400: E/AndroidRuntime(7135): Caused by: java.lang.NullPointerException10-04 17:43:05.400: E/AndroidRuntime(7135): at com.solar.LoginActivity.initView(LoginActivity.java:35)10-04 17:43:05.400: E/AndroidRuntime(7135): at com.solar.LoginActivity.onCreate(LoginActivity.java:17)10-04 17:..
阅读全文
摘要:0-04 15:15:36.218: E/AndroidRuntime(5176): FATAL EXCEPTION: main10-04 15:15:36.218: E/AndroidRuntime(5176): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.solar/com.solar.SetupInfoActivity}: android.util.AndroidRuntimeException: requestFeature() must be called before adding c
阅读全文
摘要:10-04 14:47:29.914: E/AndroidRuntime(4941): FATAL EXCEPTION: main10-04 14:47:29.914: E/AndroidRuntime(4941): android.app.SuperNotCalledException: Activity {com.solar/com.solar.TSettingActivity} did not call through to super.onDestroy()10-04 14:47:29.914: E/AndroidRuntime(4941): at android.app.Activ.
阅读全文