摘要:
当char byte short变量参与运算时,会自动转换为int型数据进行运算。 当使用*= += /= -=等扩展运算符进行运算时,会自动进行数据类型转换。 所以:会报错。 short s = 1; short s1 = 2; short s2 = s+s1; 而:不会报错 short s = 阅读全文
摘要:
接口中的方法包括:抽象方法,默认方法和静态方法。 其中抽象方法没有方法体,用public修饰。 默认方法用default修饰,必须有方法体。 静态方法必须有方法体。 interface A{ public void test1(); void test2(); default void test3( 阅读全文