摘要:
create后一定要free吗?简单举例 procedure a; var x:TX; begin x:=TX.create; //do someting; x.free //如果我这里不free,到了这个end不就是相当于C中的}自动释放吗? 也就是说在此处这个free是多余的。对吗? end; 阅读全文
摘要:
转载地址:https://www.cnblogs.com/mumble/archive/2011/05/25/2056462.htmlfunction Format(const Format: string; const Args: array of const): string; overload 阅读全文
摘要:
转载地址:http://blog.sina.com.cn/s/blog_44fa172f0101cur1.html1)destroy:虚方法释放内存,在Tobject中声明为virtual,通常是在其子类中override 它,且要加上inherited关键字,才能保证派生类对象正确地被销毁;但de 阅读全文