吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 662|回复: 2
收起左侧

[求助] 为什么 弹框结果是0 ?

[复制链接]
冥界3大法王 发表于 2023-8-24 21:55
unit Unit7;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  Vcl.StdCtrls;

type
  TForm7 = class(TForm)
    Edit1: TEdit;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form7: TForm7;

function goushi(i: Integer):integer;  //定义公共函数

implementation

uses
  Unit8;

function goushi(i: Integer):integer;
begin
  Form7.Edit1.text := 8.toString;    //form2调运Form1的函数,如需要用到form1的组件,应注意在组件前添fORM1
end;

{$R *.dfm}

procedure TForm7.Button1Click(Sender: TObject);
begin
  Form8.Show;
end;

end.



unit Unit8;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  Vcl.StdCtrls;

type
  TForm8 = class(TForm)
    Edit1: TEdit;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form8: TForm8;

implementation

uses
  Unit7;
{$R *.dfm}

procedure TForm8.Button1Click(Sender: TObject);
var
  i: Integer;
begin
  i := 5;
  Edit1.Text := '2';
  goushi(i);
  ShowMessage(IntToStr(goushi(i)));
end;
end.

免费评分

参与人数 1热心值 +1 收起 理由
b12312312 + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

DEATHTOUCH 发表于 2023-8-24 22:59
[Delphi] 纯文本查看 复制代码
function goushi(i: Integer):integer;
begin
  Form7.Edit1.text := 8.toString;    //form2调运Form1的函数,如需要用到form1的组件,应注意在组件前添fORM1
end;

这里没有返回值啊,但是你下面:
[Delphi] 纯文本查看 复制代码
ShowMessage(IntToStr(goushi(i)));

当然会出问题了。
一般编译器会有警告的,没看吗这是?
axiong 发表于 2023-8-25 08:42
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-1-11 00:49

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表