Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 162)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Owner Reporter Resolution Summary
#144 イグトランス (egtra) イグトランス (egtra) fixed 例外クラスの実装
Description

コンパイラに例外機構が搭載されたのに、ライブラリ側の対応がなされていない。まずは、System.Exceptionを初めとする例外クラス群を実装する。

#147 イグトランス (egtra) イグトランス (egtra) fixed 派生クラスの例外を基底クラス型で受け取れない。
Description

次のプログラムでCatch As Exceptionという出力がなされない。ステップ実行してもCatch内に入らない。

#console
Imports System
Try
	Throw New SystemException("SystemException") 'SystemExceptionはExceptionの派生クラス
Catch e As Exception
	Print "Catch As Exception"
End Try

Sleep(-1)

次のプログラムでは、Catch As SystemExceptionが出力される。Catch節を上から順に見て、最初に見付かるSystemExceptionをCatch可能なCatch節として、Catch e As Exception以下へ制御が移るようにすべき。

#console
Imports System
Try
	Throw New SystemException("aa")
Catch e As Exception
	Print "Catch As Exception"
Catch e As SystemException
	Print "Catch As SystemException"
End Try

Sleep(-1)
#162 dai イグトランス (egtra) fixed EventHandlerを定義できない
Description

http://www.activebasic.com/forum/viewtopic.php?t=1934&start=15#9593に書いているとおり、EventHandlerのコメントアウトを外すと、ライブラリのビルドに失敗します。

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.