归纳几种FreeBasic中的几种变量声明方式

1.Dim a as string

2.Dim as string a,b,c

3.const as string a="hello"

4.Dim a As const string=Str(Rnd)

暂时只想到这几种了....

原文地址:https://www.cnblogs.com/obj-a/p/13396466.html