会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
fish in the sea
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
4
5
6
7
8
9
10
11
下一页
2016年11月24日
Gradle build finished with 100 error(s) in 14s 629ms
摘要: 两次出现Gradle build finished with 100 error(s) in 14s 629ms,不用说别人的代码==看这个就好啦 http://blog.csdn.net/beibeixiao/article/details/49891403
阅读全文
posted @ 2016-11-24 18:02 Nicolellu
阅读(1009)
评论(0)
推荐(0)
2016年11月19日
opencv2.3. 9+vs2012
摘要: 忍不住要爆粗口了都! 气炸了,配置opencv: http://blog.csdn.net/poem_qianmo/article/details/19809337 参考以上博文: 简单来说: 1.安opencv-配置环境变量 2.打开vs,视图-属性管理器-debug-其实也不知道到底是哪一步好了
阅读全文
posted @ 2016-11-19 15:35 Nicolellu
阅读(137)
评论(0)
推荐(0)
2016年11月3日
ButterKnife-- ButterKnife.bind(this); @BindView(R.id.bottomSelectView) BottomSelectView bottomSelectView;
摘要: 参考: http://bxbxbai.github.io/2016/03/12/how-butterknife-works/?utm_source=tuicool&utm_medium=referral 理解原理: 发现ButterKnife的原理不是: 在 bind(this) 方法执行的时候通过
阅读全文
posted @ 2016-11-03 16:21 Nicolellu
阅读(809)
评论(0)
推荐(0)
2016年10月29日
递归实现数组求和
摘要: int sum(int a[],int n) 注意 n是数组下标 return n==0?a[n]:sum(a,n-1)+a[n] 还是数组的元素个数 return n==1?a[n-1]:sum(a,n-1)+a[n-1];
阅读全文
posted @ 2016-10-29 13:14 Nicolellu
阅读(412)
评论(0)
推荐(0)
data structure begin!!
摘要: 为了迎接SAP的笔试,开始学习数据结构,加油加油! 开始时间 161028 笔试开始时间?? 【开始看了黑皮书,已经被大学上了两年多,从最开始的害怕:答辩 算法 总觉得这么高端的词,肯定特别特别难 现在呢,答辩-原来就是上台上讲讲PPT,无非都是背景,内容,方法 做过实践答辩,也做过面试答辩,还有项
阅读全文
posted @ 2016-10-29 10:26 Nicolellu
阅读(113)
评论(0)
推荐(0)
递归实现全排列算法-161029
摘要: 算法要点: n个元素的全排列:一个元素放在最前方,剩下n-1个元素的全排列 出口:当就剩下一个元素需要全排列的时候,把数组打印出来就行了 http://blog.csdn.net/xiazdong/article/details/7986015 写的比黑皮书好致敬! 没想明白的地方:当一个元素需要全
阅读全文
posted @ 2016-10-29 10:13 Nicolellu
阅读(147)
评论(0)
推荐(0)
2016年10月23日
简单粗暴-文件拓展名+任务管理器
摘要: 控制面板--小图标显示--文件夹选项--查看--找到隐藏···拓展名 Ctrl+shift+Esc 任务管理器
阅读全文
posted @ 2016-10-23 21:47 Nicolellu
阅读(178)
评论(0)
推荐(0)
try to write a server
摘要: 使用Eclipse来创建一个Java Web程序,后面将通过Android客户端跟服务端进行交互。可以用用Android客户端+PHP服务端也可以使用Android客户端+Java EE服务端这样的搭配 参考Javaweb: http://blog.csdn.net/wwj_748/article/
阅读全文
posted @ 2016-10-23 21:17 Nicolellu
阅读(184)
评论(0)
推荐(0)
2016年10月17日
在TextView中实时显示数据
摘要: //下面实时更新显示在textView中的数据handler = new Handler();runnable = new Runnable(){@Overridepublic void run(){// TODO Auto-generated method pushupTextView.setTe
阅读全文
posted @ 2016-10-17 21:45 Nicolellu
阅读(1038)
评论(0)
推荐(0)
2016年10月16日
点击事件
摘要: run.setOnClickListener(new MyClickListener());public class MyOnClickListener implements OnClickListener{ public void onClick(View v) { Intent intent =
阅读全文
posted @ 2016-10-16 21:03 Nicolellu
阅读(190)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
下一页
公告