“静态”有什么用?带有变量、函数和类对象等的关键字?

发布于 2024-11-06 19:54:22 字数 210 浏览 0 评论 0原文

可能的重复:
静态函数/变量

告诉我静态的不同组合,例如对象静态和变量正常,或变量静态函数正常,对象静态函数正常等

Possible Duplicate:
static function/variable

Tell me the different combination of static like object static and variable normal , or variable static function normal , object static function normal etc etc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤千羽 2024-11-13 19:54:22

静态变量和函数在声明的范围内受到限制。此外,如果定义为静态,则函数中定义的变量将在函数调用之间保留其值。

对象上的静态方法或成员可以直接使用而无需对象的特定实例,即不会自动将 this 指针传递到方法中。当然,这意味着您只能从静态方法中访问其他静态方法和变量。

A static variable and function are limited in scope they are declared in. Additionally, variables defined in functions will persist their value across function calls if defined as static.

A static method or member on an object can be used directly without a specific instance of the object, i.e. no this pointer will be automatically passed into the method. Naturally this means you can only access other static methods and variables from within a static method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文