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# 中是否有任何等效关键字可以在静态方法调用中从自身内部引用该类,而不使用正确的类名?
PHP 等价物是self.
self
如果它发生在类内部,则不需要使用引用。只需使用方法/属性名称即可,因为它在当前范围内。如果它在另一个类中,那么它不是SELF,所以你需要使用类名。