代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/313296/13590981
bas mducapture.bas
Attribute VB_Name = "mduCapture"
Option Explicit
Public Type RECT
left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Public Const HWND_DESKTOP =
www.eeworm.com/read/313296/13591024
bas mduglobal.bas
Attribute VB_Name = "mduGlobal"
Option Explicit
Public Function GetAppPath() As String
If Right(App.Path, 1) = "\" Then
GetAppPath = App.Path
Else
GetAppPath = App.Path
www.eeworm.com/read/313151/13595151
java basicgeneratordemo14.java
// generics/BasicGeneratorDemo14.java
// TIJ3 Chapter Generics, Exercise 14, page 639
/* Modify BasicGeneratorDemo.java to use the explicit form of creation for the
* Generator (that is, use the ex
www.eeworm.com/read/311052/13637910
java explicitstatic.java
//: ExplicitStatic.java
// Explicit static initialization
// with the "static" clause.
class Cup {
Cup(int marker) {
System.out.println("Cup(" + marker + ")");
}
void f(int marker) {
Sy