- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using learn;
- namespace study
- {
- //定义计算器类
- public class Calculators
- {
- //构造函数
- public Calculators()
- {
- }
- //定义Add方法,此方法返回一个int类型数也,可以返回其他类型
- private int Add(int x, int y)
- {
- int total;
- total = x + y; //计算x+y的和
- return total; //通过return 将计算的和返回,当调用该方法时可以用一个int类型变量接收.见如下Print方法
- }
- //定义打印方法
- public void Print()
- {
- //调用Add方法,并用一个int类型变量m接收Add方法返回的值
- int m = Add(19, 20);
- Console.WriteLine("19+20的和是{0}", m);
- }
- }
- class Program
- {
- static void Main(string[] args)
- {
- //实例化类,并调用Print方法
- Calculators c = new Calculators();
- c.Print();
- Console.ReadKey();
- }
- }
- }
复制代码
|