通过javac编译java文件1.先导入需要引用的包D:\Program Files
(x86)\apache-tomcat-7.0.53\webapps\test\WEB-INF\classes>set
classpath=%classpath%;D:\Program Files (x86)\ap...
分类:
编程语言 时间:
2014-05-21 20:21:14
阅读次数:
244
MyEclipse当你创建完Java项目后会弹出Open Associated
Perspective(切换透视图)的对话框,为了避免造成更多的麻烦,一般单击No按钮就可以了。但是,如果不小心选择了Yes,如何还原呢? 第一种:
关闭myeclipse应用程序,在工作空间删除掉.metadata文....
分类:
系统相关 时间:
2014-05-21 18:45:12
阅读次数:
455
今天在工作中走了很多的弯路,仔细回想下
是自己的基础知识太薄弱了,很多知识点都是似是而非的状态,一知半解的,比如
linq中的entity.select(e=>e.Name).contians("sa")
竟然不知道到底返回的是社么类型,要有的专业精神还有就是sql的类型装换,完全没有印象了 se....
分类:
其他好文 时间:
2014-05-21 18:04:41
阅读次数:
238
【题目】
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
The same repeated number may be chosen from C unlimited number of times.
Note:
All numbers (including target) w...
分类:
其他好文 时间:
2014-05-21 15:21:28
阅读次数:
292
构造函数:构造函数是一种特殊的成员函数
构造函数的特点:
1 构造函数的函数名和类名相同
2 构造函数没有返回值
3 构造函数用于初始化对象
通过一个实例说明构造函数的作用
#include
using namespace std;
class Time//时间类
{
public:
void set_time();//设置时间
void show_time();//...
分类:
其他好文 时间:
2014-05-21 14:38:17
阅读次数:
263
1. 设置ATU 区域号寄存器为需要配置的地址转换区编号。
2. 设置ATU Region Lower Base Address Register 和ATU Region Upper Base Address
Register。(在此区域内的目标地址将由区域号寄存器所在的ATU 转换)
3. 设置ATU Region Limit Address Register。
4. 设置ATU Reg...
分类:
其他好文 时间:
2014-05-21 13:52:28
阅读次数:
247
shell命令分成内置命令和外部命令。
内置命令(builtin command) 是shell解释程序内建的,有shell直接执行,不需要派生新的进程。有一些内部命令可以用来改变当前的shell环境。
常见的内部命令有:.(点命令)、bg、cd、continue、echo、exec、exit、export、fg、jobs、pwd、read、return、set、shift、t...
分类:
其他好文 时间:
2014-05-21 13:33:24
阅读次数:
213
POJ【数论/组合/博弈论】题目列表
POJ【数论/组合/博弈论】题目列表
原来的列表比较水,今天换了一个难一些的列表,重新开始做~
红色的代表已经AC过,蓝色的代表做了但是还没过。这句话貌似在我空间里的每份列表里都有额。
博弈论
POJ 2234 Matches Game
POJ 2975 Nim
POJ 2505 A multiplication game
POJ...
分类:
其他好文 时间:
2014-05-21 11:09:40
阅读次数:
346
Problem Description
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the follow...
分类:
其他好文 时间:
2014-05-21 10:55:57
阅读次数:
325