程序员可以投入的资本就是:身体和脑力,说白了都是出卖劳动力换取回报,也就是钱。我们大部分人都是凡人,或许当初是基于兴趣和理想去做一件事,入一门行,但随着阅历的丰富,年龄的增长,责任感的叠加你工作就是为...
分类:
其他好文 时间:
2017-03-11 23:56:14
阅读次数:
366
光标(游标)概念引入 就是一个结果集(查询或者其他操作返回的结果是多个时使用)定义一个光标 cursor c1 is select ename from emp; 从光标中取值 打开光标: --open c1;(打开光标执行查询) 关闭光标: --close c1;(关闭游标释放资源)取一行光标的值 ...
分类:
数据库 时间:
2017-02-20 12:45:08
阅读次数:
278
1. 效果最近碰到这种类似需求,然后做出如图所示的效果。
源代码地址:github ,如果对你有帮助希望给个star。2. 干货
给RecyclerView添加header,这里...
分类:
其他好文 时间:
2017-02-08 16:15:44
阅读次数:
345
任何一个maven项目都会继承一个默认的父pom配置:Super POM,详见:https://maven.apache.org/guides/introduction/introduction-to-the-pom.html 。在pom.xml中可以直接使用一些变量值,如: 详见:https:// ...
分类:
其他好文 时间:
2017-01-24 17:55:44
阅读次数:
223
Every Flash or Flex developer who has had to access remote resources has come across a crossdomain.xml policy file at some point. This article takes a ...
分类:
其他好文 时间:
2017-01-23 23:00:47
阅读次数:
378
http://stackoverflow.com/questions/28126082/where-does-the-jit-compiled-code-reside https://wiki.openjdk.java.net/display/HotSpot/Linker+methods+for+d ...
分类:
编程语言 时间:
2017-01-18 01:33:39
阅读次数:
199
一。 1. Android 四大組件 Activity , Service , BroadcastReceiver ,ContentProvider 2. 多個Activity組成棧,當前Activity处于最顶层 3. setTheme(int resid)可以用来设置窗口风格 二。 1. Ser ...
分类:
移动开发 时间:
2016-12-29 06:53:45
阅读次数:
210
String imageName = "index_fragmen"+getColor(); final int resId = context.getResources().getIdentifier(imageName, "drawable", context.getPackageName())... ...
分类:
其他好文 时间:
2016-12-28 12:32:27
阅读次数:
157
话不多说,直接上代码,主函数中直接怼两个方法进去,复制粘贴即可 方法调用,哪里要图片就塞哪里,直接把图片给你整成100*100 ...
分类:
移动开发 时间:
2016-12-20 20:07:04
阅读次数:
155