张
张剑波
Unregistered / Unconfirmed
GUEST, unregistred user!
如下:
uses inifiles
......
function xxxxxxx:xxx
begin
var
myini:tinifile;
begin
try
myini:=tinifile.create( 'aaa.ini');
do something
finally
myini.free;
end;
end;
这一段编译后提示: 'myini' might not have been initialized
我在程序中大量使用类似语句,这样的提示有10几个。
当然运行没发现什么问题,不过心里不舒服。
我有点神经质了,你说说吧,这段程序有毛病吗?
uses inifiles
......
function xxxxxxx:xxx
begin
var
myini:tinifile;
begin
try
myini:=tinifile.create( 'aaa.ini');
do something
finally
myini.free;
end;
end;
这一段编译后提示: 'myini' might not have been initialized
我在程序中大量使用类似语句,这样的提示有10几个。
当然运行没发现什么问题,不过心里不舒服。
我有点神经质了,你说说吧,这段程序有毛病吗?