2016-12-29 demon7452
Java学习笔记-集合 Note:参阅书籍《Core Java,Volume I:Fundamentals》 集合框架-Collection Framework 集合的接口-interface 继续阅读 »
2016-11-24 demon7452
Creature Mod Tutorial 1 - "Creating a Mod" In this tutorial we're going to learn how to create our very own mod for 'Don't Starve'. Mods are a way for players to add their own content to the game. Creating a mod is really easy. All we need is two files and a folder and we're good to go. Let's get started! 继续阅读 »
2016-11-01 demon7452
Java面试题收集整理 来源:骆昊 链接: blog.csdn.net/jackfrued/article/details/44921941 1、面向对象的特征有哪些方面 面向对象的特征主要有以下几个方面: 继续阅读 »
2016-10-20 demon7452
VR
Google DayDream-Android篇 官方文档 一、Google VR SDK for Android 继续阅读 »
2016-09-28 demon7452
策略模式-Strategy Pattern GitHub源码 定义 The Strategy Pattern defines a family of algorithms(演算法;运算法则;),encapsulates( 总结; 扼要概括; ) each one,and makes them interchangeable(可交换的;可交替的;).Strategy lets the algorithm vary independently from clients that use it. 继续阅读 »
2016-09-06 demon7452
WHV
Work And Holiday Visa 工作假期签证(Working Holiday Visa),又称打工度假签证,是一种旅行许可,它允许旅行者出于弥补其旅行资金的目的而在签证颁发国受雇工作。 大多数工作假期签证是在相关国家之间签订互惠协定来保证的,是用来鼓励双方国家的公民进行旅行和文化交流。 这项政策的最初参与国包括日本、澳洲、纽西兰和加拿大。 继续阅读 »
2016-05-15 demon7452
VR
HTC VIVE 评测 1、先上开箱照 继续阅读 »
2016-04-10 demon7452
2016-03-15 demon7452
Java面试题总结(其一) 1、sleep和wait方法的区别 这两个方法来自不同的类分别是Thread和Object 最主要是sleep方法没有释放锁,而wait方法释放了锁,使得其他线程可以使用同步控制块或者方法。 wait,notify和notifyAll只能在同步控制方法或者同步控制块里面使用,而sleep可以在 任何地方使用 synchronized(x){ x.notify() //或者wait() } sleep必须捕获异常,而wait,notify和notifyAll不需要捕获异常 继续阅读 »
2016-03-13 demon7452
学习笔记-数据库 Note:参阅书籍《Spring 3.x 企业应用开发实战》 MySQL数据库引擎 MySQL数据库引擎取决于MySQL在安装的时候是如何被编译的。要添加一个新的引擎,就必须重新编译MYSQL。在缺省情况下,MYSQL支持三个引擎:ISAM、MYISAM和HEAP。另外两种类型INNODB和BERKLEY(BDB),也常常可以使用。如果技术高超,还可以使用MySQL+API自己做一个引擎。 继续阅读 »