摘要:
1、++i和i++x = ++i -> i = i + 1 ; x = i;x = i++ ->x = i; i = i + 1;2 常量指针和指针常量常量指针:const int * p p指向一个常量,常量不可修改,p指向地址可改指针常量:int * const p = &a p为一个常量,p的... 阅读全文
摘要:
本人现在在做Android项目,需要在Ubuntu12.04中编译android源码,遇到一个步骤为安装jdk6官方文档(http://source.android.com/source/initializing.html)中说明如下The Sun JDK is no longer in Ubuntu's main package repository. In order to download it, you need to add the appropriate repository and indicate to the system which JDK should be us 阅读全文