上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: ⑤多线程中测试某个条件的变化用 if 还是用 while? 说是要把if换成while的理由,应该是wait线程被唤醒之后,会继续从wait那里往下面执行,如果是if的话,就会直接往下面执行,不会再判断if的状态了;但是如果是while的话,从wait那里往下面执行,然后还会判断while中的条件, 阅读全文
posted @ 2017-05-27 00:28 H_bolin 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 步骤: 原文: http://blog.csdn.net/sinat_32955803/article/details/51894710 阅读全文
posted @ 2017-05-25 23:12 H_bolin 阅读(1513) 评论(0) 推荐(0) 编辑
摘要: 原文:http://blog.csdn.net/wangliblog/article/details/22501141 阅读全文
posted @ 2017-05-19 15:04 H_bolin 阅读(44893) 评论(0) 推荐(1) 编辑
摘要: 官方网址:http://javolution.org/apidocs/javolution/io/Struct.html 第一步:导包 第二步:创建继承的结构体 结构体定义如下所示: 测试: 结果: 1804368info.RecordMenSize:11783501200 01 02 03 04 阅读全文
posted @ 2017-05-17 10:03 H_bolin 阅读(2566) 评论(1) 推荐(0) 编辑
摘要: 有两种方式(在集成第三方库的使用 使用的非常多) 签名配置信息 一是直接按F4,在项目结构面板中进行设置,只要操作两个两个选项卡就好了,signing(生成配置信息)和build types(打包类型)这两个选项卡。 最后会在gradle文件中生成代码,或者自己写代码进行配置也一样的 原文:http 阅读全文
posted @ 2017-02-24 19:55 H_bolin 阅读(328) 评论(0) 推荐(0) 编辑
摘要: *在实际运行中同样的Service的确只能有一个。 Services有两种启动形式: Started:其他组件调用startService()方法启动一个Service。一旦启动,Service将一直运行在后台(run in the background indefinitely)即便启动Servi 阅读全文
posted @ 2016-12-15 15:49 H_bolin 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 原文: http://blog.csdn.net/xu_fu/article/details/24484019 阅读全文
posted @ 2016-12-14 23:15 H_bolin 阅读(2089) 评论(0) 推荐(0) 编辑
摘要: 启动闪烁动画 取消闪烁动画 阅读全文
posted @ 2016-11-24 15:37 H_bolin 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 要素 :1、 该函数大全是基于C语言方式的,对于C++方式可以直接转换 ,例如,对于生成一个jstring类型的方法转换分别如下: C编程环境中使用方法为:(*env) ->NewStringUTF(env , "123") ; C++编程环境中(例如,VC下)则是: env ->NewString 阅读全文
posted @ 2016-11-24 14:58 H_bolin 阅读(4372) 评论(0) 推荐(0) 编辑
摘要: Array Operations -- 数组操作 1.GetArrayLength Returns the number of elements in the array. 返回数据的长度。 参数: env:JNI 接口指针。 array:Java 数组对象。 返回值: 数组的长度。 2.NewOb 阅读全文
posted @ 2016-11-24 14:50 H_bolin 阅读(2053) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页