之前未标注数组尺寸
我有以下 QuickBasic 4.5 代码:
IF LEN(Dir$("mtn.vga")) > 0 THEN
BLOAD "mtn.vga", VARPTR(mtn(1))
我尝试将其移植到 FreeBasic 但收到错误:
数组未标注尺寸,位于“(”之前
IF LEN(Dir("mtn.vga")) > 0 那么
<前><代码> ^
有什么想法吗?
I have the following QuickBasic 4.5 code:
IF LEN(Dir$("mtn.vga")) > 0 THEN
BLOAD "mtn.vga", VARPTR(mtn(1))
I'm trying to port it to FreeBasic but receive the error:
Array not dimensioned, before '('
IF LEN(Dir("mtn.vga")) > 0 THEN
^
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该特定行是完全有效的 FreeBASIC 代码(即使您在 Dir() 之后保留美元符号,它也能工作)。我运行这个测试代码只是为了确保,它的工作原理与人们所期望的一样:
你介意放一大块代码(也许在pastebin上并将我链接到它)吗?问题的原因可能就在代码前面的某个地方。
That specific line is perfectly valid FreeBASIC code (it works even if you keep the dollar sign after Dir()). I ran this test code just to make sure, and it works as one would expect:
Would you mind putting a larger chunk of code (maybe on pastebin and link me to it)? The cause of the problem may be somewhere just earlier in your code.
在 FreeBASIC 中,字符串变量后的 $ 已被弃用,仅当您想使用与旧版 BASIC 兼容的程序时才
有用 按照示例程序了解 DIR()
BLOAD 的作用
从使用 BSave 创建的文件或兼容的 BMP 图像文件加载任意数据。
但是你必须确定原始代码是 QB 还是 QuickBASIC,因为有不同的方式来获取相同的东西
示例
fbc myprog.bas -lang qb
不适用于此示例尝试用 fblite 代替 qb
In FreeBASIC the $ after String Variable is deprecated is usefull only if you want use for a compatible program with older BASIC
Follow the example program for understand what do the DIR()
BLOAD
Loads arbitrary data from a file created with BSave, or a compatible BMP image file.
But you Have to be sure if the original code is QB or QuickBASIC because have different way to take the same things
Example
fbc myprog.bas -lang qb
doesnt work with this exampletry fblite instead qb