attribute的用法

来源:互联网 发布:聚享游源码 编辑:程序博客网 时间:2024/06/11 04:42
constructor
destructor
constructor (priority)
destructor (priority)
The constructor attribute causes the function to be called automatically before execution enters main (). Similarly, the destructor attribute causes the function to be called automatically after main () has completed or exit () has been called. Functions with these attributes are useful for initializing data that will be used implicitly during the execution of the program.
You may provide an optional integer priority to control the order in which constructor and destructor functions are run. A constructor with a smaller priority number runs before a constructor with a larger priority number; the opposite relationship holds for destructors. So, if you have a constructor that allocates a resource and a destructor that deallocates the same resource, both functions typically have the same priority. The priorities for constructor and destructor functions are the same as those specified for namespace-scope C++ objects (see C++ Attributes).


These attributes are not currently implemented for Objective-C.

http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html

http://blog.chinaunix.net/u2/62358/showart_500457.html
原创粉丝点击