02 2012 档案
摘要:1. issue: [2012-02-25 20:33:52 - test_1] Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead. Please use Android Tools > Fix Project Properties. solution" 有两种解决办法: 1. 项目 右键 ->android tools ->Fix Project 2. 如果不可以,检查Project -> Properties->Java Compile
阅读全文
摘要:1. declare type (*pointer)(arg...)
阅读全文
摘要:1. look the menu key, default is F8,2. open and login3. rightclick, then select fullscreen3. if the size is small, adjust the resolution via system->preferences->display4. press F8 to go back
阅读全文
摘要:1. struct defination struct _name { int a; char*b; ... } 一般之后还要typedef it to let its use be convenient, for example: typedef struct _name name; or directly write: typedef strunct _name { int a; char*b; ... }name;2. initialization name x={3,"char",...};3. initialize an array of struct: name
阅读全文