gpt4 book ai didi

c# - 实现具有私有(private)集的属性

转载 作者:行者123 更新时间:2023-12-01 16:28:08 25 4
gpt4 key购买 nike

如何实现具有私有(private)集属性的接口(interface),例如:

public interface IExample{
int Test{private set;get;}
}

public class Example : IExample{
private int _test;
public int Test{
private set{
_test=value;
}
get{
return _test;
}
}
}

我明白为什么它不会编译,因为接口(interface)中不允许使用访问修饰符,但 {set;get;} 也不起作用。

我尝试了其他一些方法,但没有成功,但上面的示例最好地描述了问题。

最佳答案

看来您正在努力确保没有人调用您的属性(property)上的 setter。您只需从公共(public)界面中省略它即可做到这一点:

public interface IExample{
int Test{get;}
}

public class Example : IExample{
private int _test;
public int Test{
private set{
_test=value;
}
get{
return _test;
}
}
}

关于c# - 实现具有私有(private)集的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24051231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com