码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi之Raise抛出异常

时间:2017-01-13 10:06:55      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:control   span   .net   png   异常   dct   int   style   img   

技术分享

 

相关资料:

http://blog.csdn.net/a20071426/article/details/10160171

 

实例代码:

 1 unit Unit1;
 2 
 3 interface
 4 
 5 uses
 6   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
 7   Dialogs, StdCtrls;
 8 
 9 type
10   TForm1 = class(TForm)
11     Button1: TButton;
12     procedure Button1Click(Sender: TObject);
13   private
14     { Private declarations }
15   public
16     { Public declarations }
17   end;
18 
19 var
20   Form1: TForm1;
21 
22 implementation
23 
24 {$R *.dfm}
25 
26 procedure TForm1.Button1Click(Sender: TObject);
27 var
28   int1: Integer;
29 begin
30   try
31     int1 := StrToInt(A);
32   except
33     raise Exception.CreateFmt(%d = %s,[1001, 您的程序在Unit1单元32行出错了!]);
34   end;
35 end;
36 
37 end.

 

Delphi之Raise抛出异常

标签:control   span   .net   png   异常   dct   int   style   img   

原文地址:http://www.cnblogs.com/FKdelphi/p/6281539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!