gpt4 book ai didi

function - Commodore 64 BASIC 中的多行功能

转载 作者:行者123 更新时间:2023-12-04 14:24:58 26 4
gpt4 key购买 nike

所以,我想在 Commodore 64 BASIC 中编写更大的函数。到目前为止,从我从其他来源(例如各种 C64 wiki 以及 C64 本身的用户手册)看到的内容来看,函数定义只能是一行。
也就是说,我似乎无法在 BASIC 中找到与括号/其他任何其他语言用来描述代码块的类似结构。

有谁知道我将如何在 BASIC 中编写不止一行的代码块?

单行函数示例:

10 def fn X(n) = n + 1
20 print fn X(5) rem Correctly called function. This will output 6

但我不能做这样的事情:
10 def fn X(n) = 
20 n = n + 1
30 print n
40 rem I'd like the definition of function X to end at line 30 above
50 fn X(5) rem Produces syntax error on line 40

感谢您的时间!

最佳答案

遗憾的是 C64 BASIC 不支持更复杂的功能。

但是,它确实支持更复杂的子例程,这就是您在这种情况下想要的。

10 rem you can set up n in advance here
20 n = 23
30 gosub 50
40 rem n is now 24
50 rem start of subroutine; this line is not needed, it's just here for clarity
60 n=n+1
70 print n
80 return
90 rem now you can call the subroutine on line 50 and it'll return at line 80

不幸的是,在 C64 BASIC 中将参数传入子程序并从子程序中返回值不是形式化的构造,因此您只需要使用如上所示的普通变量即可。

关于function - Commodore 64 BASIC 中的多行功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38415954/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com