码迷,mamicode.com
首页 > 编程语言 > 详细

java -- 内部类

时间:2017-09-03 01:15:51      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:red   java   str   pack   name   内部类   输入   stat   for   

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 -- 内部类

标签:red   java   str   pack   name   内部类   输入   stat   for   

原文地址:http://www.cnblogs.com/2206411193qzb/p/7468514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!