0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Classic ASP(VBScript) 配列の要素数を変数で指定する

Posted at

Classic ASP(VBScript)での開発で書き方に迷ったことを備忘録として残したいと思います。

目次

 エラーが出たコード
 解決案
 まとめ

エラーが出たコード

・エラー「整数型の定数がありません。」出力あり

sample1.asp
Dim arraySize : arraySize = 3
Dim testArray(arraySize)

Dim で配列の要素数に変数で定義した配列を宣言するとエラーが出るみたい

解決案

動的配列として宣言したあとに配列を初期化する場合、上記のエラーを回避することができる

sample2.asp
Dim testArray()
Dim arraySize : arraySize = 3
Redim testArray(arraySize)

まとめ

私自身、Classic ASP(VBScript)での開発では、デバックの方法や文法に慣れていないので、こまめに挙動を確認しながら開発を進めていきたいと思いました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?