Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#137 fixed SPrintF関数の実装 イグトランス (egtra) イグトランス (egtra)
Description

Cの文字列書式化関数sprintfを実装する。

書式化のオプション(精度、正符号など)は、String.Formatなどで指定可能なものと殆ど一致しているため、これらにも使い回す。

#144 fixed 例外クラスの実装 イグトランス (egtra) イグトランス (egtra)
Description

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

#147 fixed 派生クラスの例外を基底クラス型で受け取れない。 イグトランス (egtra) イグトランス (egtra)
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)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.