摘要: 人防车位就是人防工程里的车位。人防车位的使用权限由城市的人防办公室授权给建筑物的建设机构,而建设机构可以将人防车位的使用权转让给个人和机构,使用期限不得超过20年,如果国家条件需要则强制征用。而部分地区率先实行人防车位产权归开发商所有并可办理产权证,开发商也可以将人防车位产权转给个人或机构。 人防车 阅读全文
posted @ 2020-09-16 14:17 kemp 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1.切换分支时,如果本地库没有要切换的远程分支,则需要为改分支在本地库创建一个分支对应远程分支。 命令:git checkout -b 本地分支 远程分支 切换本地分支则是: git checkout 本地分支 阅读全文
posted @ 2019-12-18 18:20 kemp 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1.ViewPager中fragment引用问题; 正确引用: int index = viewPaper.getCurrentItem(); Fragment fragment = viewPaper.getAdapter().instantiateItem(viewPaper, index); 阅读全文
posted @ 2019-08-06 14:07 kemp 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 1.技术提升只有一条路,那就是大量的时间投入 + 良好的知识梳理能力。--摘自任玉刚老师博客 2.你想上班上到自由,几乎不可能。--摘自任玉刚老师博客 阅读全文
posted @ 2018-05-16 10:47 kemp 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1.Java注解处理器 https://www.race604.com/annotation-processing/ http://hannesdorfmann.com/annotation-processing/annotationprocessing101 阅读全文
posted @ 2017-12-07 10:12 kemp 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 摘自:http://www.importnew.com/22083.html 1 2 3 4 5 6 7 8 9 10 class AutoUnboxingTest { public static void main(String[] args) { Integer a = new Integer( 阅读全文
posted @ 2017-11-30 17:32 kemp 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1.Note that Kotlin does not have a new keyword. 2.The open annotation on a class is the opposite of Java's final: it allows others to inherit from thi 阅读全文
posted @ 2017-09-08 16:03 kemp 阅读(78) 评论(0) 推荐(0) 编辑
摘要: Andorid Studio通过gradle插件使用gradle的功能。 1.gradle设置,gradle可以配置成本地的或默认的。 File→Settings→Build, Execution, Deployment→Build Tools→Gradle 使用默认的配置,project\grad 阅读全文
posted @ 2017-08-10 15:35 kemp 阅读(179) 评论(0) 推荐(0) 编辑
摘要: Linux:编译so文件 gcc TestNative.cpp -I"${JAVA_HOME}/include" -I"${JAVA_HOME}/include/linux" -fPIC -shared -o testnative.so 参考:https://stackoverflow.com/qu 阅读全文
posted @ 2017-08-02 17:50 kemp 阅读(3443) 评论(0) 推荐(1) 编辑
摘要: https://ibotpeaches.github.io/Apktool/ 阅读全文
posted @ 2017-04-06 10:05 kemp 阅读(779) 评论(0) 推荐(0) 编辑