a dynamically-initialized local static variable is not allowed inside of a statement expression
Static constructors allow complex static variable initialization.
a static variable of this new local type is declared
may not declare a global or static variable, or a member of a native type that refers to objects in the gc heap
不能声明全局或静态变量,也不能声明引用 gc 堆中对象的本机类型成员
Outside class body, a static variable is a global variable with strictly local visibility
在类定义体外,静态变量将作仅局部可见的全局变量,也就是其储存方式跟全局变量 一样是存在命名空
A global or static variable was added, renamed, removed, or changed data type or initialization: %s (referenced by: %s)
添加、重命名、移除了一个全局或静态变量,或者更改了数据类型或进行了初始化: %s(由 %s 引用)
A static variable is not available because it has not been initialized yet.
静态变量不可用,因为它尚未初始化。
The destructor for a block-scope static variable is called at program exit, but only if the initialization took place successfully.
块作用域静态变量的析构函数在程序退出时 执行,但仅若初始化成功发生才执行。
If it is in the foreground, the users can reuse one formula parser instance via member variable as far as possible. If there is no asynchronous calling, the users can even consider saving one formula parser instance by using static variable.
如果在前台,尽量通过成员变量重复使用同一个公式解析器实例r如果没有异步调用,甚至可以考虑使用静态变量保存一个公式解析器实例。
A static variable is associated with the class as a whole rather than with specific instances of a class. Non-static variables take on unique values with each object instance.
静态变量与类整体相关联而不是与具体的一个类的实例相关联。非静态变量则拥有一个与每个对象实例相关联的唯一的值。
PHP does not record the originally declared default value of any static variable.
PHP 并不额外记录任何静态变量的声明时提供的初始默认值。
To support multiple singleton class types, the ConnPool class adds a $klass static variable with the assumption that it will be overridden in subclasses.
为了支持多个类型的单例类,ConnPool类添加了一个 $klass静态变量并假设它会在子类中被覆盖。
Otherwise, dynamically changing the static variable CActiveRecord::db is a better idea.
否则,动态改变静态变量 CActiveRecord : : db 是一个好主意。