在Delphi 7中的Console Application中不能使用Random方法

前端之家收集整理的这篇文章主要介绍了在Delphi 7中的Console Application中不能使用Random方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是不是可以在Delphi的Console Application中使用Random方法?它不会编译并显示错误

‘.’ expected but ‘(‘ found

当我尝试在正常应用程序(使用Windows)中执行相同的操作时,它可以正常工作.

我正在尝试编译的整个代码在这里:

program random;

{$APPTYPE CONSOLE}

uses SysUtils;

var iRan:integer;

begin
  Randomize;
  iRan:=Random(10);
  writeln(iRan);
  readln;
end.

解决方法

您的程序被命名为随机.该名称在System中隐藏了该名称.

使用不同的程序名称或完全限定函数System.Random.

原文链接:https://www.f2er.com/delphi/102334.html

猜你在找的Delphi相关文章