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

📄 inner_1.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
字号:
// inner class regression test.package bar.foo;class other {  class foo {}}class inner_1 {    static void bar () {        inner_1 xxxx;			// Refers to inner_1	bar.foo.another xyz;		// Refers to non inner another 	bar.foo.other.foo X;		// OK to declare, inner class foo	bar.foo.inner_1.t bar;		// Inner class t	inner_1.t foo;			// Inner class t	t foobar;			// Inner class t	other.foo zag;			// Valid for declaration.	t.ungah x;    }    void foo () {	// z.t.u foo;	t t1 = new t();        t1.print (); 	new t().print();    }    class t {	void print () {	    System.out.println ("This is `inner_1.t'");	}	class ungah {}    }}class another {} 

⌨️ 快捷键说明

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