java入門之植樹節

來源:互聯網
上載者:User

標籤:

今天晚上下班回來做的事情有

1,liuyang給了一個jdk安裝包。

安裝步驟和環境配置是按照 http://jingyan.baidu.com/article/6dad5075d1dc40a123e36ea3.html 這個來的。

Eclipse是在官網下載的。

2,這些弄好之後,建立project 建立了class。我連helloworld 都不會寫。這樣三九給了我一個代碼。我就試著跑了一遍,有好多紅叉叉。

問題出現在要名稱一致,我都沒改,直接複過去了。

然後又照著書上寫了個string代碼又是很多錯誤。還喊了liuyang遠程協助了,問題出現在;多了一個。好傻的問題。

附上今天代碼

package test1;public class String02 {private static String getA() {return "a";}public static void main(String[] args) {String a = "a";final String c = "a";//final修飾符從定義上強制限制式了String b = a + "b";String d = c + "b";String e = getA() + "b";String compare = "ab";System.out.println(b == compare);//falseSystem.out.println(d == compare);//trueSystem.out.println(e == compare);//falseSystem.out.println("Hello World");}} //compare是個常量而,b=a+"b";並不是一個常量,雖然a是一個局部變數,也指向了一個常量,但是其引用也並沒有強制限制式, //雖然在這段代碼是不會改變的,但是啟動並執行時候會有任何事情發生,尤其是在“位元組碼增強”技術面前,當代碼發生了切入之後就會發生改變。

 

package test1;public class Test02 {public static void main (String[] args){String a = "a";String b = a+"b";String c ="ab";String d =new String (b);System.out.println (b==c);//falseSystem.out.println(c==d);//falseSystem.out.println(c==d.intern());//trueSystem.out.println(b.intern() == d.intern());//true}}//使用intern能夠保證同一值的字串的全域唯一性

 

知識總結有:

 

java入門之植樹節

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.