java 基础 之int

int a;
System.out.println(a=23);

输出结果:

23

分析 : 先将23赋值给a,然后输出a的值

原文地址:https://www.cnblogs.com/lick468/p/13298143.html