以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]动态变量名 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=178953) |
-- 作者:wangnovel -- 发布时间:2022/7/30 9:34:00 -- [求助]动态变量名 我想定义一个动态的变量,比如: Dim j As Integer=8 Dim "n"&j as string="222" 随着j的变化,变量可以变成n8,n9......,我写成:"n"&j ,提示错误,应该怎么写? |
-- 作者:有点蓝 -- 发布时间:2022/7/30 9:44:00 -- 没有动态变量的用法。考虑使用字典 dim d as dictionary(of string,string) Dim j As Integer=8 d( "n" & j) = "222" msgbox(d( "n" & j) )
|