a.java
来自「这是一个关于J2EE的开源包common里的许多组件的示例应用程序,可以借鉴.」· Java 代码 · 共 37 行
JAVA
37 行
/**
* Title : Base Dict Class
* Description : here Description is the function of class, here maybe multirows
* @author kevin
* @Version 1.0
*/
package lang;
/**
* Class description goes here.
* @version 1.0 2005-12-13
* @author kevin
*/
class A
{
protected int i;
A(int i)
{
this.i = i;
}
class B extends A
{
B(int j)
{
super(j);
}
}
public static void main(String[] a)
{
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?