博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Delphi结构体的定义和使用
阅读量:5047 次
发布时间:2019-06-12

本文共 1207 字,大约阅读时间需要 4 分钟。

DELPHI结构体的定义和使用  

 

 
 
 

窗体设计如上面结构!

代码如下:

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Edit1: TEdit;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Edit2: TEdit;
    Edit3: TEdit;
    Edit4: TEdit;
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    Label5: TLabel;
    Label6: TLabel;
    procedure Button2Click(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  type    //一是注意定义位置;
    Tman=record
    name:string;
    id:string;
  end;

  type
    Tmarks=record
    person:Tman;
    math:real;
    english:real;
  end;


implementation

{$R *.dfm}

 

procedure TForm1.Button1Click(Sender: TObject);
var
  na,num:string;
  sx,yy:real;
  liuyi:Tmarks;//二是注意使用方式
begin
  liuyi.person.name:='XX;
  liuyi.person.id:='20012070105';
  liuyi.math:=89.5;
  liuyi.english:=92.7;
  edit1.Text:=liuyi.person.name;
  edit2.Text:=liuyi.person.id;
  edit3.Text:=floattostr(liuyi.math);
  edit4.Text:=floattostr(liuyi.english);
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
  close;
end;

end.

转载于:https://www.cnblogs.com/xygzs/p/3510793.html

你可能感兴趣的文章
Python面向对象03/继承
查看>>
java序列化和反序列化
查看>>
绝对定位
查看>>
flink源码编译(windows环境)
查看>>
dpkg 删除 百度网盘 程序
查看>>
服务器nginx安装
查看>>
std::nothrow
查看>>
rest-framework 分页器
查看>>
JQuery(一)安装&选择器 样式篇
查看>>
浏览器的DNS缓存查看和清除
查看>>
浏览器跨域问题
查看>>
HTML5 input控件 placeholder属性
查看>>
使用JAVA如何对图片进行格式检查以及安全检查处理
查看>>
html5实现移动端下拉刷新(原理和代码)
查看>>
iPhone开发中从一个视图跳到另一个视图有三种方法:
查看>>
pytho logging
查看>>
一个Java程序员应该掌握的10项技能
查看>>
c#英文大小写快捷键
查看>>
tpframe免费开源框架又一重大更新
查看>>
一.go语言 struct json相互转换
查看>>