0%

理论与原则

理论与原则能够很好的帮助人们进行思考和执行,特别是在团队协作领域,大家有共同的指导原则,能大大减少沟通成本,从而提高团队的效率。

分析法

5W1H分析法

5W1H(WWWWWH)分析法也叫六何分析法,是一种思考方法,也可以说是一种创造技法。在企业管理、日常工作生活和学习中得到广泛的应用。

阅读全文 »

Jinput

Java library for accessing input devices

The JInput Project hosts an implementation of an API for game controller discovery and polled input. It is part of a suite of open-source technologies initiated by the Game Technology Group at Sun Microsystems with intention of making the development of high performance games in Java a reality.

The API itself is pure Java and presents a platform-neutral completely portable model of controller discovery and polling. It can handle arbitrary controllers and returns both human and machine understandable descriptions of the inputs available.

The implementation hosted here also includes plug-ins to allow the API to adapt to various specific platforms. These plug-ins often contain a native code portion to interface to the host system.

阅读全文 »

windows

1
2
3
4
5
6
1. 确保存在路径,如果没有则按如下新建项:
计算机\HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment
2. 在上述项(1)中新建字符串值:CurrentVersion,值:可自定义,比如:1.8.0
3. 在上述项(1)中新建项,如下:
计算机\HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.8.0
4. 在上述项(3)中新建字符串值:JavaHome,值:jdk或jre路径,比如D:\develop\jdk-1.8\jre
阅读全文 »

介绍

巴科斯-诺尔范式缩写为: BNF , 是一种用形式化符号精确描述程序设计语言的语法的一种形式系统.实际上,BNF范式等价于乔姆斯基的2型文法.它是一种典型的元语言,可以严格地表示语法规则,且描述的文法是上下文无关文法.

阅读全文 »

Table

该数据结构有点像Map.

table使用关联型数组(value),你可以使用任意类型的值作为数组的索引(key),但不能是nil.

阅读全文 »