• 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不能实现接口
    酒肉穿肠过 佛祖心中留 世人若学我 如同入魔道
  • 相关阅读:
    Linux中批量添加文件和修改文件小笔记
    scp 命令快速使用讲解
    使用Apache Spark 对 mysql 调优 查询速度提升10倍以上
    阿里云CentOS-7.2安装mysql
    yum安装网络配置图形界面
    忘记了root密码,如何进入系统?
    Linux学习之竿头直上
    Linux命令之初出茅庐
    Linux学习之要点必备
    阿里云CentOS7.2服务器的安装
  • 原文地址:https://www.cnblogs.com/jspdelphi/p/15484962.html
Copyright © 2020-2023  润新知