C# 设计一个学生类,字段:姓名(可读写),出生日期(只读),成绩(可读写),且为三个字段附初值的构造方法

 我来答
FoolRabbit编程
2014-06-07 · 知道合伙人数码行家
FoolRabbit编程
知道合伙人数码行家
采纳数:619 获赞数:3806
毕业于苏州大学,4年编程经验,对WPF有研究。

向TA提问 私信TA
展开全部

代码如下:

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            Student stu = new Student("小明", DateTime.Now, 99);
            MessageBox.Show(string.Format("姓名:{0}\r\n出生日期:{1:yyyy-MM-dd}\r\n成绩:{2}\r\n", stu.Name, stu.Birth, stu.Course));
        }
    }

    public class Student
    {
        public Student(string name,DateTime birth,int course)
        {
            this.Name = name;
            this.Birth = birth;
            this.Course = course;
        }

        public string Name { get; set; }

        public DateTime Birth { get; private set; }

        public int Course { get; set; }
    }

效果:

如有疑问,继续追问。

玩转数据处理
推荐于2016-11-28 · 数据处理,Python,dotnet
玩转数据处理
采纳数:1613 获赞数:3794

向TA提问 私信TA
展开全部
public class Student
{
private string name ;
private DateTime birthday;
private double score;

public Student(string name,DateTime birthday,double score)
{
this.name = name;
this.birthday = birthday;
this.score = score;

}

public string Name
{
get{return this.name;}
set{this.name = value;}

}

public string Birthday
{
get{return this.name;}//只读
}

public string Score
{
get{return this.score;}
set{this.score= value;}

}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小明v小芳
2014-06-07
知道答主
回答量:32
采纳率:0%
帮助的人:22.2万
展开全部
class Student
{

private string xingming;
public string name
{
get
{
return xingming;
}
set
{
xingming = value;
}
}
private string chusheng;
public string birthday
{
get
{
return chusheng;
}
}
private string chengji;
public string grade
{
get
{
return chengji;
}
set
{
chengji = value;
}
}

public void Student(string name, string birthday, string grade)
{
xingming = name;
chusheng = birthday;
chengji = grade;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式