Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなものがあるとします。
Dim x, y x = Request("x") y = x * 2
x を整数として解析できない場合、例外が発生しますか、それとも結果の式は int として解析されますか?
インタプリタはx数値として評価しようとします。値が数値 (float または integer) の場合、コードは機能します。それ以外の場合、型の不一致エラーが発生します。
x