全部博文(1293)
发布时间:2015-02-26 10:36:23
.net自带的有播放.wav格式音频文件的类:System.Media.SoundPlayer,只要调用这个类就可以了。 代码如下: string path = “....../sound.wav”;//.wav音频文件路径 System.Media.SoundPlayer player = new System.Media.SoundPlayer(path); player..........【阅读全文】
发布时间:2015-02-17 00:15:32
待参考文章java同步机制:synchronizedhttp://blog.csdn.net/cjjky/article/details/7353390......【阅读全文】
发布时间:2015-02-16 23:59:09
SQLITE数据库的使用是Android单例模式典型的应用场景。 单例模式好处: 将对象写成static,避免内存频繁实例化,因此对象在静态内存区只有一份。直接使用getInstance()取得对象。 模型类 public class DatabaseHelper extends SQLiteOpenHelper { private static DatabaseHelper mInstance = null; .........【阅读全文】
发布时间:2015-02-09 14:51:35
主要实现代码如下:using System; using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace AlignForHashtable{ class Program&nb.........【阅读全文】