delphi7编程的问题

//mainForm文件unitMainForm;interfaceusesWindows,Messages,SysUtils,Variants,Classes,Grap... //mainForm文件
unit MainForm;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls,
untClassTeacher in 'untClassTeacher.pas',
untClassStudent in 'untClassStudent.pas';

type
TForm1 = class(TForm)
lbTeacher: TListBox;
lbStudent: TListBox;
btnTeacher: TButton;
btnStudent: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
ATeacher:TTeacher;
AStudent:TStudent;

implementation

{$R *.dfm}

end.

//学生单元
unit untClassStudent;

interface

uses
controls;

type
TStudent=class
Name:String;
Sex:Boolean;
Birthday:TDate;
function Talk:string;
end;

implementation

{ TStudent }

function TStudent.Talk: string;
begin
Result:='I"m learning programming';
end;

end.
//老师单元
unit untClassTeacher;

interface
uses
controls;
type
TTeacher=class
Name:string;
Sex:Boolean;
Birthday:TDate;
TeachPost:string;
function Talk:string;
end;

implementation

{ TTeacher }

function TTeacher.Talk: string;
begin
Result:='I"m a teacher';
end;

end.

//主程序
program Exa03_02;

uses
Forms,Controls,
MainForm in 'MainForm.pas' {Form1},
untClassTeacher in 'untClassTeacher.pas',
untClassStudent in 'untClassStudent.pas';

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
以下是编译信息,我是自学delphi的,这个程序弄了一个晚上弄不懂,跪求高手指点迷津啊,小僧不甚感激!
[Error] MainForm.pas(8): ',' or ';' expected but 'IN' found
[Fatal Error] MainForm.pas(9): Could not compile used unit 'untClassStudent.pas'
展开
 我来答
surwe
2011-01-12 · TA获得超过631个赞
知道小有建树答主
回答量:1339
采纳率:44%
帮助的人:249万
展开全部
untClassTeacher in 'untClassTeacher.pas',
untClassStudent in 'untClassStudent.pas';//注释掉,不要放在系统单元调用处

ATeacher:TTeacher;
AStudent:TStudent;需要先添加引用

具体问题已实现,请参考您代码
己闻楣Sx
2011-01-12 · TA获得超过1935个赞
知道大有可为答主
回答量:1057
采纳率:93%
帮助的人:910万
展开全部
把MainForm.pas第8行的“ in 'untClassTeacher.pas'”以及第9行的“in...”删掉即可。
“in xxx.pas”的用法专用于工程文件(.dpr),或者说是program的。
工程文件使用in...是说明该工程包含哪些源文件,单元文件uses的东西是.dcu,即已经编译好的其他单元。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式