runtime
2016-08-21 10:41:44 0 举报
Runtime是编程中的一个概念,指的是程序在运行过程中所占用的系统资源,包括CPU、内存、磁盘和网络等。它通常用于衡量程序的性能和效率,以及优化程序的运行速度和资源占用。在编写代码时,程序员需要考虑如何减少程序的运行时长和资源消耗,以提高程序的响应速度和用户体验。同时,Runtime也是一些编程语言中的重要特性之一,例如Java中的Runtime类可以用于动态加载和管理程序中的类和资源文件。总之,Runtime是程序开发中不可或缺的一个重要概念,对于提高程序的性能和稳定性具有重要作用。
作者其他创作
大纲/内容
objc_ivar_list
struct objc_ivar *ivar_list--------------------------------------int ivar_count int space
objc_ivar
char *ivar_namechar *ivar_typeint ivar_offset-------------------------int space
objc_method
SEL method_namechar *method_typesIMP method_imp
objc_protocol_list
struct objc_protocol_list *next;long count;Protocol *list[1];
objc_method_list
struct objc_method_list *obsoleteint method_count struct objc_method method_list[1]-------------------------------------- int space
objc_object
Class isa
objc_class
Class isa------------------------------Class super_classstruct objc_ivar_list *ivarsstruct objc_method_list **methodListsstruct objc_protocol *protocols-----------------------------const char *namelong versionlong infolong instance_size
protocol(objc_object)
objc_category
struct objc_ivar_list *ivarsstruct objc_method_list **methodListsstruct objc_protocol *protocolschar *category_name char *class_name
0 条评论
下一页