随笔 - 20  文章 - 7  trackbacks - 0
<2006年2月>
2930311234
567891011
12131415161718
19202122232425
2627281234
567891011

常用链接

留言簿(1)

随笔档案

文章分类

文章档案

积分与排名

  • 积分 - 20102
  • 排名 - 1714

最新评论

 

 1<body>
 2<h1>获得数组维数的最大索引值</h1>
 3<%
 4dim arrayA(10as integer
 5response.write("获取一维数组的最大索引值,结果为" & ubound(arrayA) & "<br>")
 6dim arrayB(15,20as integer
 7response.write("获取二维数组第一维度的最大索引值,结果为"& ubound(arrayB,1&"<br>")
 8response.write("获取二维数组第二维度的最大索引值,结果为"& ubound(arrayB,2)&"<br>")
 9%>
10</body>








Dim ArrayA as integer() = (1,2,3,4,5)
相当于声明一个ArrayA(4)的一维数组

posted on 2006-02-06 20:44 The Game, tomtom 阅读(650) 评论(0)  编辑  收藏 所属分类: die

只有注册用户登录后才能发表评论。


网站导航: