时间:2022-05-25 20:18:01 | 来源:网络营销
时间:2022-05-25 20:18:01 来源:网络营销
你是不是写Java已经有些年头了?还依稀记得这些吧:那些年,它还叫做Oak;那些年,OO还是个热门话题;那些年,C++同学们觉得Java是没有出路的;那些年,Applet还风头正劲……。public class Test {不仅可以编译通过,并且也抛出了SQLException,你甚至都不需要用上Lombok的SneakyThrows。
// 方法没有声明throws
public static void main(String[] args) {
doThrow(new SQLException());
}
static void doThrow(Exception e) {
Test.<RuntimeException> doThrow0(e);
}
@SuppressWarnings("unchecked")
static <E extends Exception>
void doThrow0(Exception e) throws E {
throw (E) e;
}
}
class Test {是的!Java语言不允许一个类里有2个方法是“重载一致”的,而不会关心这2个方法的throws子句或返回类型实际是不同的。
Object x() { return "abc"; }
String x() { return "123"; }
}
abstract class Parent<T> {查看一下Child类所生成的字节码:
abstract T x();
}
class Child extends Parent<String> {
@Override
String x() { return "abc"; }
}
// Method descriptor #15 ()Ljava/lang/String;在字节码中,T实际上就是Object类型,这很好理解。
// Stack: 1, Locals: 1
java.lang.String x();
0 ldc <String "abc"> [16]
2 areturn
Line numbers:
[pc: 0, line: 7]
Local variable table:
[pc: 0, pc: 3] local: this index: 0 type: Child
// Method descriptor #18 ()Ljava/lang/Object;
// Stack: 1, Locals: 1
bridge synthetic java.lang.Object x();
0 aload_0 [this]
1 invokevirtual Child.x() : java.lang.String [19]
4 areturn
Line numbers:
[pc: 0, line: 1]
class Test {是的,这是真的,尽管你的人肉解析器不能马上理解上面这些方法的返回类型,但都是一样的!下面的代码也类似:
int[][] a() { return new int[0][]; }
int[] b() [] { return new int[0][]; }
int c() [][] { return new int[0][]; }
}
class Test {是不是觉得这个很2B?想象一下在上面的代码中使用JSR-308/Java 8的类型注解,语法糖的数目要爆炸了吧!
int[][] a = {{}};
int[] b[] = {{}};
int c[][] = {{}};
}
@Target(ElementType.TYPE_USE)类型注解,这个设计引入的诡异在程度上仅仅被它解决问题的能力超过。
@interface Crazy {}
class Test {
@Crazy int[][] a1 = {{}};
int @Crazy [][] a2 = {{}};
int[] @Crazy [] a3 = {{}};
@Crazy int[] b1[] = {{}};
int @Crazy [] b2[] = {{}};
int[] b3 @Crazy [] = {{}};
@Crazy int c1[][] = {{}};
int c2 @Crazy [][] = {{}};
int c3[] @Crazy [] = {{}};
}
Object o1 = true ? new Integer(1) : new Double(2.0);等同于:
Object o2;让你失望了,来做个简单的测试吧:
if (true)
o2 = new Integer(1);
else
o2 = new Double(2.0);
System.out.println(o1);打印结果是:
System.out.println(o2);
1.0哦!如果“需要”,条件运算符会做数值类型的类型提升,这个“需要”有非常非常非常强的引号,因为,你觉得下面的程序会抛出NullPointerException吗?
1
Integer i = new Integer(1);5、你没有掌握复合赋值运算符
if (i.equals(1))
i = null;
Double d = new Double(2.0);
Object o = true ? i : d; // NullPointerException!
System.out.println(o);
i += j;直觉上认为,2行代码是等价的,对吧?但结果即不是!JLS(Java语言规范)指出:
i = i + j;
byte b = 10;为什么这个真是太有用了?如果我要在代码中,就地对字符做转型和乘法,然后,你懂的……。
b *= 5.7;
System.out.println(b); // prints 57
byte b = 100;
b /= 2.5;
System.out.println(b); // prints 40
char ch = '0';
ch *= 1.1;
System.out.println(ch); // prints '4'
char ch = 'A';
ch *= 1.5;
System.out.println(ch); // prints 'a'
for (int i = 0; i < 10; i++) {然后要得到类似下面的输出(每次输出是随机结果):
System.out.println((Integer) i);
}
92对于这个结果,你可能也是难以置信吧!难怪人们对Java的评价程度也是不一样的(具体可查看亿企邦《关于C语言、C++、Java和Python这4种程序开发语言的评价》的相关介绍)。
221
45
48
236
183
39
193
33
84
int goto = 1;结果是:
Test.java:44: error: <identifier> expected这是因为goto是个还未使用的关键字,保留了为以后可以用,但这不是我要说的让你兴奋的内容。
int goto = 1;
^
label: {对应的字节码是:
// do stuff
if (check) break label;
// do more stuff
}
2 iload_1 [check]向后跳:
3 ifeq 6 // 向前跳
6 ..
label: do {对应的字节码是:
// do stuff
if (check) continue label;
// do more stuff
break label;
} while(true);
2 iload_1 [check]8、Java是有类型别名的
3 ifeq 9
6 goto 2 // 向后跳
9 ..
interface People => Set<Person>;这样定义的People可以和Set<Person>互换地使用:
People? p1 = null;在Java中不能在顶级(top level)定义类型别名,但可以在类级别、或方法级别定义,如果对Integer、Long这样名字不满意,想更短的名字:I和L,很简单:
Set<Person>? p2 = p1;
People? p3 = p2;
class Test<I extends Integer> {上面的代码中,在Test类级别中I是Integer的“别名”,在x方法级别,L是Long的“别名”,可以这样来调用这个方法:
<L extends Long> void x(I i, L l) {
System.out.println(
i.intValue() + ", " +
l.longValue()
);
}
}
new Test().x(1, 2L);当然这个用法不严谨,在例子中,Integer、Long都是final类型,结果I和L 效果上是个别名(大部分情况下是,赋值兼容性只是单向的),如果用非final类型(比如,Object),还是要使用原来的泛型参数类型。
// 一个辅助类。也可以直接使用List类型C和D是啥意思呢?
interface Type<T> {}
class C implements Type<Type<? super C>> {}
class D<P> implements Type<Type<? super D<D<P>>>> {}
public abstract class Enum<E extends Enum<E>> { ... }有了上面的类型声明,一个实际的enum实现只是语法糖:
// 这样的声明记住上面的这点后,回到我们的2个类型声明上,下面的代码可以编译通过吗?
enum MyEnum {}
// 实际只是下面写法的语法糖:
class MyEnum extends Enum<MyEnum> { ... }
class Test {很难的问题,Ross Tate回答过这个问题,答案实际上是不确定的:
Type<? super C> c = new C();
Type<? super D<Byte>> d = new D<Byte>();
}
C是Type<? super C>的子类吗?然后:
步骤 0) C <?: Type<? super C>
步骤 1) Type<Type<? super C>> <?: Type (继承)
步骤 2) C (检查通配符 ? super C)
步骤 . . . (进入死循环)
D是Type<? super D<Byte>>的子类吗?试着在你的Eclipse中编译上面的代码,会Crash!(别担心,我已经提交了一个Bug)
步骤 0) D<Byte> <?: Type<? super C<Byte>>
步骤 1) Type<Type<? super D<D<Byte>>>> <?: Type<? super D<Byte>>
步骤 2) D<Byte> <?: Type<? super D<D<Byte>>>
步骤 3) List<List<? super C<C>>> <?: List<? super C<C>>
步骤 4) D<D<Byte>> <?: Type<? super D<D<Byte>>>
步骤 . . . (进入永远的展开中)
class Test<T extends Serializable & Cloneable> {绑定到类Test的实例上的泛型类型参数T必须同时实现Serializable和Cloneable,比如,String不能做绑定,但Date可以:
}
// 编译不通过!Java 8保留了这个特性,你可以转型成临时的类型交集,这有什么用?几乎没有一点用,但如果你想强转一个lambda表达式成这样的一个类型,就没有其它的方法了,假定你在方法上有了这个蛋疼的类型限制:
Test<String> s = null;
// 编译通过
Test<Date> d = null;
<T extends Runnable & Serializable> void execute(T t) {}你想一个Runnable同时也是个Serializable,这样你可能在另外的地方执行它并通过网络发送它,lambda和序列化都有点古怪。
execute((Serializable) (() -> {}));则这个lambda表达式不再是一个Runnable。
execute((Runnable & Serializable) (() -> {}));我们不得不说,Java中包含的诡异在程度上仅仅被它解决问题的能力超过。
关键词:内部