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();
}
}
Ïà¹ØÎĵµ£º
java exception ½â¾ö·½°¸ - ÎÒµÄÒì³£Íø|Òì³£|exception 730 - org.hibernate.LazyInitializationException:could not initialize proxy 731 - ¾¯¸æ: Error setting value 732 - override and commit 733 - Building workspace has encountered a problem. Errors during build 734 - Could not open the editor: An ......
1¡¢¼òµ¥ java
2¡¢¿ÉÒÆÖ²ÐÔ Ò»´Î±àÒë´¦´¦ÔËÐÐ
3¡¢ÃæÏò¶ÔÏó
4¡¢·Ö²¼Ê½ java°Ñ´ò¿ªÌ×½Ó×ֵȷ±ËöµÄÍøÂçÈÎÎñ±äµÄ·Ç³£¼òµ¥
5¡¢½¡×³ÐÔ java±àÒëÆ÷¿ÉÒÔ¼ì²é³öÆäËûÓïÑÔÔÚÔËÐÐʱ²ÅÄÜ·¢ÏֵĴíÎó
6¡¢¶àÏß³Ì ¶àÏ̵߳ļòµ¥ÐÔÊÇjavaÁ÷ÐÐÓÚ·þÎñÆ÷±à³ÌµÄÖ»ÒªÔÒò
7¡¢°²È«
8¡¢½á¹¹ÖÐÁ¢
9¡¢¶¯Ì¬
¡£¡£¡£ ......
unixϵͳ£º´ò¿ªshellÃüÁîÐÐ
ÊäÈëvi _bash_profile ÐÞ¸Ä
JA ......
¿ÉÒÔ°ÑÆÕͨµÄJava³ÌÐò×ö³ÉÕæÕýµÄexe,Ò²¾ÍÊǵ¥Ò»¸öexe¾Í¿ÉÒÔÔÚûÓа²×°JVMµÄ»úÆ÷ÉÏÔËÐС£ÕâÑùµÄ¹¤¾ß³£¼ûµÄÓÐJETºÍgcj.ǰÕßÊÇÊշѵ쬶øÇÒ×ö³öÀ´µÄexe»¹ÊÇÐèÒªÒ»¶Ñdll¡£ÍƼöʹÓÃgcj.ËûÓÐwindowsºÍLinux°æ£¬Ö±½ÓÏÂÔØzip°ü£¬²»ÐèÒª°²×°£¬ÀïÃæÓв»ÉÙÀý×Ó£¬Ò»Ð©buildµÄÅú´¦ÀíÎļþ¡£´ÓÔÀíÀ´Ëµgcj×Ô¼ºÊµÏÖÁËJVM¹æ·¶£¬Ò²¾ÍÊÇÄ ......
import java.util.*;
public class ForeachExample {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Random r = new Random();
int[] x = new int[10];
for (int i = 0; i < x.length; i++) {
x[i] = r.nextInt(100);
}
/ ......