Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 c++ 类声明中,您可以将一组成员标记为私有或公有,例如
private: int x; double y;
似乎在 c# 中没有办法做到这一点。我错了吗?
不,您不能在 C# 中执行此操作。
充其量,您可以使用成员的默认可见性,这是私有的,并且不使用私有,但对于公共,您必须为所有成员指明它。
你是对的。但是,如果您完全关闭可见性关键字,则成员默认为私有。
不,你没有错。如果您不编写任何修饰符,它将被假定为私有。