我的自动属性有一个小问题.
我是一般的编程新手,我只是开始学习类和对象.当我尝试使用自动属性时,该字段不会暴露. (不确定这是不是正确的方式)
在两个动物类中查看属性的注释部分,以了解我在说什么.
现在我有这个动物类
public class Animals{ //fIElds private string name; public Animals(string name) { this.name = name; } // default constructor public Animals() { } //This is the problematic portion public string name { get; set; } public voID bark() { Console.Writeline("{0} saID WoWOW",name); }}
这是我的主要课程
class Program{ static voID Main(string[] args) { Console.Writeline("Enter name: "); string name = Console.Readline(); Animals dog = new Animals(name); dog.bark(); Animals cat = new Animals(); Console.Writeline("Enter second name: "); cat.name = Console.Readline(); cat.bark(); }}
输出如下.最后一行是我的问题
Enter name: bob bob saID WoWOW Enter second name: Sarah saID WoWOW //Sarah is missing here
但是,当我将属性从{get; set}更改为类中的完整版本时.它输出正确的输出.
编辑的代码
public class Animals{ //fIElds private string name; public Animals(string name) { this.name = name; } public Animals() { } //apparently this is the correct way of making propertIEs public string name { get { return name; } set { name = value; } } public voID bark() { Console.Writeline("{0} saID WoWOW",name); }}
output:// Sarah出现在最后一行
Enter name: bob bob saID WoWOW Enter second name: Sarah Sarah saID WoWOW
我的问题是:为什么在使用自动属性时我没有得到我想要的输出但是当我完全写出属性时,我确实得到了我想要的结果.
谢谢你看看我的问题.希望它不会太久! ]
public class Animals{ //fIElds private string name; // <-- You don't need it when you have auto propertIEs public Animals(string name) { name = name;// <-- Using auto property } public string name { get; set; } public voID bark() { Console.Writeline("{0} saID WoWOW",name);//<-- Using auto property }}
另外,你应该看看What are Automatic Properties in C# and what is their purpose?和Auto-Implemented Properties (C# Programming Guide)
旁注1:如果没有其他构造函数,则无参数的空公共构造函数是无用的.正如Joe指出的那样,如果在你的例子中你删除它,你将无法调用var a = new Animals();
旁注2:用一个单数名词命名你的类是很常见的,这里是Animal.
总结以上是内存溢出为你收集整理的自动属性在c#中不起作用全部内容,希望文章能够帮你解决自动属性在c#中不起作用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)