java中this关键字用法
/**
* this关键字用法
*/
public class Flower {
int petalCount = 0;
String s = "initial value";
Flower(int petals){
petalCount = petals;
System.out.println("Constructor with one int arg");
}
Flower(String ss){
System.out.println("Constructor with one string arg");
s = ss;
}
Flower(String ss, int petals){
this(petals);
this.s = ss;
System.out.println("Constructor with string and int args");
}
Flower(){
this("hi",47);
System.out.println("Default Constructor with no args");
}
void printPetalCount(){
System.out.println("petalCount = "+petalCount+"; s = "+s);
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Flower x = new Flower();
x.printPetalCount();
}
}
相关文档:
先看个例子:
接口
package example;
public interface Basic {
public void hello();
}
接口的实现类
package example;
public class BasicService implements Basic {
public void hello() {
Sysyt ......
write by 九天雁翎(JTianLing) -- blog.csdn.net/vagrxie 讨论新闻组及文件 Technorati 标签: JAVA,JAVA Applet,Applet Tag,Deploy Applet,从C++到JAVA 前言 曾经,我有一个梦想,那就是我的程序能让人不需要下载就能通过浏览器运行,可惜学习的C,C++等都不具备此能力,学习完Python后,发现其也仅仅是以服务器 ......
1、简单 java
2、可移植性 一次编译处处运行
3、面向对象
4、分布式 java把打开套接字等繁琐的网络任务变的非常简单
5、健壮性 java编译器可以检查出其他语言在运行时才能发现的错误
6、多线程 多线程的简单性是java流行于服务器编程的只要原因
7、安全
8、结构中立
9、动态
。。。 ......
Java
如何遍历
MC
所有
ITEM
1
、
mc
遍历
item
原理
Mc
遍历
item
用到的命令有三个:
stats items
,
stats cachedump, get
。通过
telnet
程序
telnet
到
mc
服务器上(
telnet ip
地址
端口号,如
telnet 192.168.0.1 11211
),依次� ......
/**
* 找出四位数所有的吸血鬼数字
* 吸血鬼数字:位数为偶数的数字可以由一对数字相乘而得,这对数字包含乘积一半的位数
* 如:1260 = 21*60
*/
public class Vampire {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String s= ......