设计一个表示学生的类Student。学生类创建好之后,可以创建学生对象。然后调用speak()方法输出学生信息姓名name,性别sex,年龄age等。2.使用属性,防止外界对类中的成员变量随意访问。_c# 给类添加speak()方法并且输出-CSDN博客

网站介绍:文章浏览阅读1.1k次。自己琢磨的using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 学生{ class Program { static void Main(string[] args) { Student stu1 = new Student();//定义对象时,调用构造函数 _c# 给类添加speak()方法并且输出