delphi已经声明变量但调用该变量时依然报内存错误
代码如下(节选):interfaceusesWindows,Classes,Driver_Unit;typeTADCard=classprivateFHandle:Lon...
代码如下(节选):
interface
uses
Windows,Classes,Driver_Unit;
type
TADCard=class
private
FHandle: Longint;
FErrorCode:Longint;
FLock: TRTLCriticalSection;
FOpened:Boolean;
public
function OpenDevice: Boolean;
end;
implementation
function TADCard.OpenDevice: Boolean;
begin
if not FOpened then //这句报内存错误
begin
……
end;
Result := FOpened;
end;
好像是FOpened未被创建,但是我明明运行过CREATE了,怎么会没被创建呢? 展开
interface
uses
Windows,Classes,Driver_Unit;
type
TADCard=class
private
FHandle: Longint;
FErrorCode:Longint;
FLock: TRTLCriticalSection;
FOpened:Boolean;
public
function OpenDevice: Boolean;
end;
implementation
function TADCard.OpenDevice: Boolean;
begin
if not FOpened then //这句报内存错误
begin
……
end;
Result := FOpened;
end;
好像是FOpened未被创建,但是我明明运行过CREATE了,怎么会没被创建呢? 展开
展开全部
应该是TADCard类没创建!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
TADCard 你这个类创建了吗? 建议多贴一点代码上来有助于分析
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询