zoukankan      html  css  js  c++  java
  • Delphi Records与classes几点不同

    Though records can now share much of the functionality of classes, there are some important differences between classes and records. 
    Records do not support inheritance.
    Records can contain variant parts; classes cannot.
    Records are value types, so they are copied on assignment, passed by value, and allocated on the stack unless they are declared globally or explicitly allocated using the New and Dispose function. Classes are reference types, so they are not copied on assignment, they are passed by reference, and they are allocated on the heap.
    Records allow operator overloading on the Win32 platform; classes, however, do not allow operator overloading.
    Records are constructed automatically, using a default no-argument constructor, but classes must be explicitly constructed. Because records have a default no-argument constructor, any user-defined record constructor must have one or more parameters.
    Record types cannot have destructors.
    Virtual methods (those specified with the virtual, dynamic, and message keywords) cannot be used in record types.
    Unlike classes, record types on the Win32 platform cannot implement interfaces.
    

    尽管reords目前可以使用许多classes的特性,但是还是有几点重要的不同

    1. records不支持继承
    2. records可以包含variant classes不能
    3. records是值类型,所以在赋值时会直接复制其值。默认在栈stack上分配存储空间,或者使用new,dispose进行分配。classes是引用类型,其赋值时传递是引用。在堆heap上分配
      1. 栈由系统内核管理
      2. 堆程序自动来分配,程序退出时,系统回收。容易造成内存泄露
    4. records在win32平台支持操作符重载
    5. records自动执行一个没有参数的构造函数进行构建。类需要显示的执行构造函数。因为record有一个默认无参的构造函数,所以用户定义的record如果构造函数,其必需有至少一个参数
    6. records不能析构
    7. records中不能使用虚方法
    8. records不能实现接口
    酒肉穿肠过 佛祖心中留 世人若学我 如同入魔道
  • 相关阅读:
    如何查看python的notebook文件.ipynb
    pip3与pyttsx3文字语音转换
    Python字符乱码
    python3的urllib以及urllib2的报错问题
    python人脸对比
    Python 爬取qqmusic音乐url并批量下载
    稳定排序和不稳定排序
    Linux信号、信号处理和信号处理函数
    jQuery ajax表单提交
    Django setting 常用配置
  • 原文地址:https://www.cnblogs.com/jspdelphi/p/15484962.html
Copyright © 2011-2022 走看看