我是 Pascal 的初学者。我正在尝试在 Pascal 中创建一个简单的“”游戏。为此,我正在使用多个单元来对细节进行抽象。一个单元是 board.pas,其中我声明了一个类型矩阵,它只是一个 2x2 数组。
matrix = array of array of Integer;
我想在另一个单元 (players.pas) 中使用这种类型,但我希望这可以私下实现 (在实现中),而不是在接口下公开可用。但是如果我把
uses board.pas;
在实现中,编译器抛出错误“未找到标识符矩阵”,因为在我使用它的接口下有一个过程“原型”。
intece
type
pType = (Human, Computer);
Player = record
player_name : record
firstname, lastname : String;
end;
score : Integer;
case player_type : pType of
Human : ();
Computer : (level, current_prediction : Integer)
end;
procedure getDetails(num : Integer; var p : Player);
procedure evaluate_prediction(var p : Player; real_board, game_board : matrix);
implementation
uses board;
我希望我已经明确了我的问题。我可以把“uses board.pas;”放在“intece”之后,但我想知道出于好奇,有什么办法可以让它“隐藏”在实现中...?我希望这个问题很清楚。
Rudy Velthuis 回答了你的问题。对于你的简单原型,使用一个 2x2 静态数组。但是,我会假设你有一个很好的理由让matrix
(这里TMatrix
) 成为一个新类型,并有记录而不是类。
如何隐藏你的 TMatrix 类型?
选项 1.真正隐藏。在单元的实现部分中声明您的TMatrix
类型。这样,您将把此类型视为实现详细信息。它不会被共享。此实现详细信息中的更改不会传播到其他单元:
intece
procedure evaluate_prediction(var p : TPlayer);
implementation
type
TMatrix = array of array of integer;
var
real_board, game_board :TMatrix;
选项 2.实现使用。在某个单元的接口部分中声明您的TMatrix
类型,让我们说(像您一样)board.pas
。现在,使用此类型且自包含的所有内容都应在此单元中声明。其他单元应仅在其实现部分中使用此类型,并且所有非独立方法也应在其实现部分中声明。
unit board
intece
type
TMatrix = array of array of integer;
var
real_board, game_board :TMatrix;
implementation
本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处
评论列表(81条)