Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 162)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#8 fixed 例外処理を実装する。 dai dai
Description

例外処理を実装する。下記URLに記載してある仕様にをベースに実装する。

http://dev.activebasic.com/dev_wiki/index.php?title=%E4%BE%8B%E5%A4%96%E5%87%A6%E7%90%86&action=edit

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

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

#102 fixed 代入時に基底クラスへ変換できない dai イグトランス (egtra)
Description

関数呼出時や初期化時では問題ありませんが、後から代入するときには下のようにエラーになります。

Class Base
End Class

Class Derived
	Inherits Base
End Class

Dim d = New Derived

Dim b = d As Base 'Ok
Dim o = d As Object 'Ok

Dim b2 As Base
Dim o2 As Object

b2 = d 'キャスト演算子がオーバーロードされていません。
o2 = d '〃

b2 = d As Base '"Operator As" は定義されていません。
o2 = d As Object '〃
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.