In most cases you will need root permission to be able to capture packets on an interface. Using tcpdump (with root) to capture the packets and saving...
分类:
其他好文 时间:
2014-11-03 14:29:58
阅读次数:
355
练习3:(1)创建一个带默认构造器(即无参构造器)的类,在构造器中打印一条消息。为这个类创建一个对象。P116
public class Test{
public Test(){
System.out.println("Hello Word");
}
public static void main(String[] args) {
new Test();
}
/**...
分类:
编程语言 时间:
2014-11-03 10:11:49
阅读次数:
188
传送门Description The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show....
分类:
其他好文 时间:
2014-11-02 22:19:42
阅读次数:
169
You have to think about mathematics every waking moment!---Ky Fan本文转载自''樊畿---为数学而生,数学乃是他的生命, 数学进展, 第40卷第1期, 2011年, 1-10.
分类:
其他好文 时间:
2014-11-01 08:36:26
阅读次数:
391
Validation control with a single validation rule is easy, but what if we need to validate a control using different validation rules. This article tel...
分类:
数据库 时间:
2014-11-01 00:53:54
阅读次数:
474
北航MOOC手机客户端NABC分析1) N (Need 需求) MOOC是Massive Open Online Course的缩写,通常被译为大型开放式网络课程,它最早在08年的时候由一位加拿大的学者提出,经过了几年的沉寂,终于在2012年随着几大课程平台:Coursera、edX、Udacit....
分类:
移动开发 时间:
2014-10-31 20:29:51
阅读次数:
332
java中,复用代码有两种途径:
在新的类中产生现有类的对象。由于新的类是由现有类的对象组成的,所以这种方法称为组合。采用继承的方式来复用。
继承
继承采用关键字extends实现。
java用super关键字表述超类的意思。
初始化基类
当创建一个子类的对象时,该对象包含了一个基类的子对象。这个子对象与你用基类创建的对象是一样的。对基类子对象的正确初始化也至关重要...
分类:
编程语言 时间:
2014-10-31 15:40:57
阅读次数:
199
Give you three sequences of numbers A, B, C, then we give you a number X. Now you need to calculate if you can find the three numbers Ai, Bj, Ck, whic...
分类:
其他好文 时间:
2014-10-30 20:42:05
阅读次数:
139