Your task is to write a program that can decide whether you can find an arithmetic expression consisting of five given numbers (1 {1,2,3,4,5} is a bij...
分类:
其他好文 时间:
2014-07-28 15:33:03
阅读次数:
230
public class Number { int count; public void method01(){ // int count=3; count=3; // this.count=3; System.out.println(count); } public static void mai...
分类:
其他好文 时间:
2014-07-28 15:25:23
阅读次数:
230
一 Words 1 recession-proof 抗衰退 2 desperate 拼命的,急切的,极度渴望的 e.g. Desperate with anxiety,Bob and Hans searched the whole house.焦急万分的鲍勃和汉斯把整座房子找了个遍 3 vary 变...
分类:
其他好文 时间:
2014-07-28 15:18:53
阅读次数:
298
/* public class Test{ public static void main(String[] args){ int i=0; try{ func();//区别就是该函数抛出的异常被封装了,外界不知道到底会不会发生该异常 System.out...
分类:
编程语言 时间:
2014-07-28 15:11:23
阅读次数:
215
0. 基本概念 一个【传输】(控制、批量、中断、等时):由多个【事务】组成; 一个【事务】(IN、OUT、SETUP):由一多个【Packet】组成。 USB数据在【主机软件】与【USB设备特定的端点】间被传输。【主机软件】与【USB设备特定的端点】间的关联叫做【pipes】。一个USB设备可以有多...
分类:
其他好文 时间:
2014-07-28 14:35:43
阅读次数:
288
Available pacaagess里找了coreutils-nohup包,安装好就行了运行nohup自己的程序的时候可能会出现一下:root@OpenWrt:~# nohup: ignoring input and appending output to 'nohup.out'但是这个不影响运行...
分类:
其他好文 时间:
2014-07-28 14:33:03
阅读次数:
1472
最近在学习的时候,无意间发现""与null之间有很大区别。按我的总结可以这样区分,“”是一个空的字符串,null是一个空类。看下面几段代码:String str1 = new String("");if(str1.equals("")){System.out.println("equals str1...
分类:
其他好文 时间:
2014-07-28 14:26:23
阅读次数:
247
class Demo extends Thread{ public Demo(String name){ super(name); } public void run(){ for(int i=0; i<6; ++i){ System.out.println("i...
分类:
编程语言 时间:
2014-07-27 23:10:19
阅读次数:
248
DescriptionYou've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has e...
分类:
其他好文 时间:
2014-07-27 22:51:29
阅读次数:
288
ref和out的相同点和不同点共同点:都是引用传递不同点:ref的参数在调用之前一定要赋值,在方法调用的过程中可以不要赋值。 out的参数在调用之前可以不赋值,在方法调用的过程中一定要赋值。//方法的参数 class Program { static void Main(string[] args)...
分类:
其他好文 时间:
2014-07-27 22:40:49
阅读次数:
359