⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 n19990310_3.java

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 JAVA
字号:
/*--------------------------------------------------------------------------*//* Name       : N19990310_3                                                 *//*            :                                                             *//* Cause      : Evaluation order miss, when make integer array.             *//*            :                                                             *//* Message    : NG:[4]-->[1]                                                *//*--------------------------------------------------------------------------*/public class N19990310_3 {	public static void main(String[] args) {		int x = 4; 		int ary[][] = new int[x][x=1];		if ( ary.length == 4 ) {			System.out.println("OK");		} else {			System.out.println("NG:[4]-->[" +ary.length+ "]");		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -