标签:main str inf code line space 有一个 ogr 构造方法
构造方法:
1,用于初始化,一个类中最少有一个
2,用new关键字调用
3,不能有返回值
4,方法名和类名一样
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 构造方式 { /// <summary> /// 构造方法: /// 1,用于初始化,一个类中最少有一个 /// 2,用new关键字调用 /// 3,不能有返回值 /// 4,方法名和类名一样 /// /// </summary> class Program { static void Main(string[] args) { Calculator calculator = new Calculator(1,3);//实例化对象(开辟内存空间) Console.ReadKey(); } } /// <summary> /// 计算器类 /// </summary> public class Calculator { public Calculator()//构造方法 { //这里可以写初始化的内容 Console.WriteLine("这个就是构造方法"); } //构造可以有多个 public Calculator(int a, int b) { int c = a + b; Console.WriteLine("加起来等于" + c); } } }
运行结果:
标签:main str inf code line space 有一个 ogr 构造方法
原文地址:https://www.cnblogs.com/wangqiangya/p/13061684.html