Java 基礎知識-(面試題之賦值運算符)

觀察下面程序段是否有錯誤,如有錯誤,請指出並說明理由。 public class test { public static void main(String[] args) { short s = 1; s = s + 1;    //需強制類型轉換,s = (short) (s + 1); s += 1; } } s = s + 1;錯誤。java 緣由分析:當short與in
相關文章
相關標籤/搜索