java -- 内部类

Posted Constructor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java -- 内部类相关的知识,希望对你有一定的参考价值。

package sad;


public class ers {

public static void main(String[] args) {
RedCowForm a = new RedCowForm();
RedCowForm b = new RedCowForm("红牛");
b.ShowCow();
}}
class RedCowForm
{
String name;
RedCow cow;
RedCowForm()
{
System.out.println("输入错误");
}
RedCowForm(String s)
{
cow = new RedCow(100,100,200);
name = s;
}
class RedCow
{
int height;
int weight;
int price;
RedCow(int h,int w,int p)
{
height = h;
weight = w;
price = p;
}
void ShowMess()
{
System.out.println("height:"+height+"weight:"+weight+"price:"+price);
}
}
void ShowCow()
{
cow.ShowMess();
}
}










































以上是关于java -- 内部类的主要内容,如果未能解决你的问题,请参考以下文章

java的内部类与匿名内部类

JAVA基础——内部类详解

Java_内部类

Java 内部类

java内部类与匿名内部类作用分别是啥?

Java内部类