1. 首页
  2. 数据库
  3. 其它
  4. C#类的创建与初始化实例解析

C#类的创建与初始化实例解析

上传者: 2020-12-29 22:27:34上传 PDF文件 31KB 热度 10次
本文以一个实例简单实现了类的创建与初始化,实现代码如下所示: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace C_program_test { class Person { public string Name; //因为Name没有赋值,而它是string类型的,所以它的默认值就是Null public int Age; //因为Age和Gender也没有赋值,而它两是int类型的,所以他们两个的默认值为0 publ
用户评论