JAVA類,別名問題

/*
  * 
  * @author caryt
  *
  */
class test1{
String thh="caryt1";
}
spa

/**.net

 * 
 * @author caryt
 *
 */
public class test {
   static void test2(test1 t3){
  t3.thh="caryt3";
   }
/**
* @param args
*/

public static void main(String[] args) {
// TODO Auto-generated method stub
test1 t1=new test1();
test1 t2=new test1();

t2.thh="caryt2";get

System.out.println("t1:"+t1.thh+" t2:"+t2.thh);
it

t1=t2;class

System.out.println("t1:"+t1.thh+" t2:"+t2.thh);test

test2(t1);

System.out.println("t1:"+t1.thh+" t2:"+t2.thh);static

}auth

}new

out: t1:caryt1 t2:caryt2
t1:caryt2 t2:caryt2
t1:caryt3 t2:caryt3referer

相關文章
相關標籤/搜索