VBS中“str”有什么用处?
Dim a,b
for a=1 to 9
for b=1 to 9
str=str & a*b&""
next
next
msgbox(str)
例如在这个句子里str作用是?
VBS中“str”有什么用处?
Dim a,b
for a=1 to 9
for b=1 to 9
str=str & a*b&""
next
next
msgbox(str)
例如在这个句子里str作用是?
这里的str只是一个变量,它用来存放数据,数据在vbs中可以变化,起这个名字是因为str是字符串英文的缩写
str 在这里是个字符串变量,相当于累加器,把所有字符合并在一起,最后用MSGBOX输出。
跟踪结果,
1. str=""
2. str="1*1 "
3. str="1*1 1*2 "
……