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

📄 final_local_switch.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
字号:
// This bug was discovered while working on java/1413 (compiling freetds.)// http://gcc.gnu.org/ml/java-prs/2000-q4/msg00156.html// The following code should build.class final_local_switch {    void foo (int type) {	final byte CHARSET_CHANGE = (byte)3;	final byte CHARSET_CHANGES = (byte)4;	switch (type) {	case CHARSET_CHANGE:	    break;	case CHARSET_CHANGES:	    break;	}    }}

⌨️ 快捷键说明

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