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.
sfdc 中的默认访问说明符是什么?
例如,如果您将一个类声明为:
class MyClass{ //Code }
那么默认情况下这个类的访问说明符是什么?
你不能定义一个没有访问修饰符的外部类,你必须指定公共或全局。如果你尝试你会得到一个编译错误:
保存错误:顶级类型必须具有公共或全局可见性
另一方面,内部类不需要访问修饰符,默认情况下是私有的。