Custom Query (162 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (76 - 78 of 162)

Ticket Owner Reporter Resolution Summary
#133 dai イグトランス (egtra) fixed ProtectedメソッドでSuperが使用できない
Description

次のコードのSuper.doHoge()の行で「Protectedメンバ関数 "doHoge" を呼び出すことはできません」というエラーになってしまいます。

#console

Class Base
Public
	Sub Hoge()
		doHoge()
	End Sub
Protected
	Virtual Sub doHoge()
		Print "Base.Proc"
	End Sub
End Class

Class Derived
	Inherits Base
Protected
	Override Sub doHoge()
		Print "Derived.Proc"
		Super.doHoge()
	End Sub
End Class

Dim d = New Derived
d.Hoge()

Sleep(-1)
#136 dai OverTaker fixed 引数がある戻り値が構造体の関数が呼び出せない
Description

time = Fx(10)のところが文法エラーになってしまいます。

Dim time As FILETIME
time = Fx(10)

Function Fx(v As Long) As FILETIME
End Function
#137 イグトランス (egtra) イグトランス (egtra) fixed SPrintF関数の実装
Description

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

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

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.