上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页
摘要: 別スレッドにするタスクの作成 別にスレッドにしたい処理を、Runnable インタフェースを実装したクラスのrumメソッドに実装する。 public class TestRunnable implements Runnable { public void run() { // スレッドIDを出力する 阅读全文
posted @ 2017-10-30 12:42 马语者 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 介绍new Thread的弊端及Java四种线程池的使用,对Android同样适用。本文是基础篇,后面会分享下线程池一些高级功能。 1、new Thread的弊端执行一个异步任务你还只是如下new Thread吗? Java 1 2 3 4 5 6 7 new Thread(new Runnable 阅读全文
posted @ 2017-10-30 10:37 马语者 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 直接写用Excel打开时会乱码,需要加上下面代码中注释的三行 fos = new FileOutputStream(file, false); //fos.write( 0xef ); //fos.write( 0xbb ); //fos.write( 0xbf ); iowriter = new 阅读全文
posted @ 2017-10-30 09:11 马语者 阅读(1611) 评论(0) 推荐(0) 编辑
摘要: 生成的文件如下: 阅读全文
posted @ 2017-10-28 16:36 马语者 阅读(4252) 评论(0) 推荐(0) 编辑
摘要: 写Java也有n年了,现在还是有不少的坏的代码习惯,也通过学习别人的代码学到了不少好的习惯。这篇文章主要是整理的资料。留给自己做个警戒,提示以后写代码的时候注意!在文章的后面,会提供整理的原材料下载。 一、类和对象使用技巧 1、尽量少用new生成新对象 用new创建类的实例时,构造雨数链中所有构造函 阅读全文
posted @ 2017-10-17 14:49 马语者 阅读(285) 评论(0) 推荐(0) 编辑
摘要: Introduction While working on a project for school, I found it necessary to perform a collision check between sprites that had been translated and rot 阅读全文
posted @ 2017-10-10 20:57 马语者 阅读(509) 评论(0) 推荐(0) 编辑
摘要: C++ Convert String to Double Speed (There is also a string-to-int performance test.) A performance benchmark of which method is faster of converting a 阅读全文
posted @ 2017-09-27 01:27 马语者 阅读(1341) 评论(1) 推荐(0) 编辑
摘要: Find 方法在区域中查找特定信息。 语法 表达式.Find(What, After, LookIn, LookAt, SearchOrder, SearchDirection, MatchCase, MatchByte, SearchFormat) 表达式 一个代表 Range 对象的变量。 参数 阅读全文
posted @ 2017-08-24 18:25 马语者 阅读(19680) 评论(0) 推荐(0) 编辑
摘要: Excel Add-in - How to automate installation Thursday, 20 October 2011 Automatic Approach ​The best way to automate the adding of the Sharperlight Exce 阅读全文
posted @ 2017-08-18 18:14 马语者 阅读(1104) 评论(0) 推荐(0) 编辑
摘要: Set wsh = VBA.CreateObject("WScript.Shell") 'wsh.Run strExePath & " g", vbHide, True Set wshOut = wsh.exec(strExePath & " g").StdOut While Not wshOut. 阅读全文
posted @ 2017-05-29 22:26 马语者 阅读(2462) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页