c#创建一个学生类,添加私有字符串类型
2个回答
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
public class Student
{
private string m_name;
public string Name
{
get { return m_name; }
set { m_name = value; }
}
private string m_sex;
public string Sex
{
get { return m_sex; }
set
{
if (value == "男" || value == "女")
{
m_sex = value;
}
else
{
Console.WriteLine("输入出错!");
}
}
}
private DateTime m_birthday;
public DateTime Birthday
{
set { m_birthday = value; }
}
private int age=0;
public int Age
{
get { return age; }
}
}
class Program
{
static void Main(string[] args)
{
Student stu = new Student();
stu.Sex = "s";
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-05-15
展开全部
class Student
{
private string m_sex;
}
追问
大虾,后面呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |