也许这很简单,我只是缺少一些基本信息,但我似乎无法在任何地方找到答案。
我正在Get_Word
为类编写一个函数,这是我的教授写的规范文件的相关部分:
function Get_Word return Ustring;
-- return a space-separated word from standard input
procedure Fill_Word_List(Wl : in out Ustring_Vector);
-- read a text file from standard in and add all
-- space-separated words to the word list wl
我已经编写了该Get_Word
函数,并尝试使用以下代码对其进行测试:
with Ada.Text_IO; use Ada.Text_Io;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure ngramtest is
Name : String(1..80);
File : File_Type;
Size : Natural;
function Get_Word return String is
-- I'm using a strings instead of Unbounded_Strings for testing purposes.
Word : String(1..80) := (others => ' ');
Char : Character;
File : File_Type;
Eol : Boolean;
I : Integer := 1;
begin
--this code below, when uncommented reveals whether or not the file is open.
--if Is_Open(File) then
-- Word := (1..80 => 'y');
--else
-- Word := (1..80 => 'n');
--end if;
loop
Look_Ahead(File, Char, Eol);
if Eol then
exit;
elsif Char = ' ' then
exit;
else
Get (File, Char);
Word(I) := Char;
I := I + 1;
end if;
end loop;
return Word(1..Word'Last);
end Get_Word;
begin
Put ("Enter filename: ");
Get_Line (Name, Size);
Open (File, Mode => In_File, Name => Name(1..Size));
Put (Get_Word);
Close(File);
end ngramtest;
它可以编译,但在运行时我收到一个异常,告诉我文件未打开,并且注释掉的部分返回“nnnnnn ...”,这意味着文件未在函数中打开。
我的问题是,如果我不允许在函数的参数中使用,我该如何从标准输入中读取?没有它们,该功能将无法访问文件。本质上,我怎样才能“Get_Word”?
对不起,如果这很简单,但我完全迷路了。