在上一节课程中,我们学习了在JavaFX中绘制游戏地图。这一节课,我们将会创建我们的游戏角色。
首先,同样的,我们创建一个简单的基类。
import javafx.scene.canvas.GraphicsContext;
/**
* 游戏物体基类
* @author Wing Mei
*/
public abstract class BaseObject {
protec...
分类:
编程语言 时间:
2014-07-29 14:56:18
阅读次数:
476
VMware三种网络模式联网
首先说一下VMware的几个虚拟设备
安装了VMware虚拟机后,会在网络连接对话框中多出两个虚拟网卡,如图:
VMnet0:用于虚拟桥接网络下的虚拟交换机
VMnet1:用于虚拟Host-Only网络下的虚拟交换机
VMnet8:用于虚拟NAT网络下的虚拟交换机
VMware Network AdepterVMnet1:Host用于与Host-O...
分类:
其他好文 时间:
2014-07-29 14:56:08
阅读次数:
266
初步效果图如下
SQL> @nb
------Oracle Database health Check STRAT
------Starting Collect Data Information!
------Part 1.DB Overview...
------Part 2.DB File Overview...
------Part 3.Perfermance Overv...
分类:
数据库 时间:
2014-07-29 14:55:48
阅读次数:
293
要想在浏览器启动APP的方法如下:
在需要跳转的ACTIVITY中添加intent-filter的相关信息:
实例如下:
然后再HTML添加如下链接即可:
进入APP之后,可以使用getIntent()来获取...
分类:
移动开发 时间:
2014-07-29 14:55:38
阅读次数:
208
#include
#include
#include
#define MAXN 5000+5
#define MAXM 200+5
typedef struct Dic{
char str[MAXN];
struct Dic* next;
}Dic;
Dic *head;
char word[MAXM];
int cnt=0;
int get_word();
void conver...
分类:
其他好文 时间:
2014-07-29 14:55:28
阅读次数:
156
if not Assigned(cxDBTreeList1.FocusedNode) then Exit;
// 上移方法:
with cxDBTreeList1 do
FocusedNode.MoveTo(FocusedNode.getPrevSibling, tlamInsert);
// 下移方法:
with cxDBTreeList1 do...
分类:
其他好文 时间:
2014-07-29 14:55:18
阅读次数:
218
链接:poj 1061
解题思路:扩展欧几里德应用:求方程Ax+By=C的一组解(x0,y0)。
设青蛙跳t次相遇,由题意可得方程:
x+mt=y+nt+CL
--> x-y=(n-m)t+CL 且 (x-y),(n-m),L已知.就是求满足方程的最小正整数解t。
定理:设a,b,c为任意整数。若方程ax+by=c的一组整数解为(x0...
分类:
其他好文 时间:
2014-07-29 14:55:11
阅读次数:
173
/*
ID: lucien23
PROG: hamming
LANG: C++
*/
#include
#include
#include
using namespace std;
int main()
{
ifstream infile("hamming.in");
ofstream outfile("hamming.out");
if(!infile || !outfile)
...
分类:
其他好文 时间:
2014-07-29 14:54:58
阅读次数:
169
今天从svn上下载项目后,想添加以下jar包。但是build path为灰色。
解决办法是:1、在项目上右键properties---project facts 如图所示:
点击右侧convert to faced from...出现如图所示:
点击ok即可。...
分类:
其他好文 时间:
2014-07-29 14:54:53
阅读次数:
475
题目地址:POJ 1840
sad。。。整个比赛期间一直以为是用什么定理或数学公式推导来做。。一直没仔细看。。结果最后5分钟的时候才看到每个元素的数据范围只是【-50,50】。。。算了。。就算看到了也做不出来。。因为会MLE,解决MLE需要把hash数组的定义类型定义成short。。。这我是不可能想出来的。。。。也没遗憾了。。
这题就是先求前两个for循环,将结果用hash数组存起来。再进行后...
分类:
其他好文 时间:
2014-07-29 14:54:53
阅读次数:
217
/*
ID: lucien23
PROG: preface
LANG: C++
*/
#include
#include
#include
#include
using namespace std;
int main()
{
ifstream infile("preface.in");
ofstream outfile("preface.out");
if(!infile || ...
分类:
其他好文 时间:
2014-07-29 14:54:28
阅读次数:
177
The Hardest Problem Ever
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 15844 Accepted Submission(s): 7321
Problem Description
Juli...
分类:
其他好文 时间:
2014-07-29 14:54:18
阅读次数:
430
Description
We all love recursion! Don't we?
Consider a three-parameter recursive function w(a, b, c):
if a
1
if a > 20 or b > 20 or c > 20, then w(a, b, c) returns:
w(20, 20, 20)
...
分类:
其他好文 时间:
2014-07-29 14:54:08
阅读次数:
278
E - 鸽巢原理入门1
Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
Every year there is the same problem at Halloween: Each neighbour i...
分类:
其他好文 时间:
2014-07-29 14:53:58
阅读次数:
297
解决证券公司统计上市公司的会计报表时,PDF报表的数据输入问题!
目前上市公司的会计报表全部以PDF格式上报到交易所,并且为了安全,实施了加密、禁止修改、禁止打印、禁止文字抽取等各种保护措施,给证券公司带来了很大困难,统计上市公司的数据只好重新把数据用手工方式输入一遍。...
分类:
其他好文 时间:
2014-07-29 14:53:38
阅读次数:
199