Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

Java中的类的定义、方法的定义和使用

$
0
0
public class Test//定义一个类,名字叫Test
{
    public int add(int a, int b)//定义一个方法(add),两个整数相加的方法
    {
	return a + b;//将a + b的值返回回去
    }

    public static void main(String[] args)
    {
	Test test = new Test();//生成一个新的对象

	int a = 3;
	int b = 4;//将a,b赋初值为3,4

	int c = test.add(a, b);//调用add方法,将运算后结果的值赋给c

	System.out.println(a);
	System.out.println(b);
	System.out.println(c);//输出打印a、b、c的值
    }
}

作者:feecooling 发表于2013-3-27 0:19:08 原文链接
阅读:139 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>