代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/385364/8807844
bas analogdisplay.bas
Attribute VB_Name = "AnalogDisplay"
Option Explicit
Type AnalogValue
BarType As Integer '0:Color 1:FMA 2:JEITA
SelectDataName As String '"COLOR","FMA","JEITA"
Range(3) As Single
www.eeworm.com/read/385015/8824227
bas rtf2html3.bas
Attribute VB_Name = "rtf2html"
Option Explicit
Private strCurPhrase As String
Private strHTML As String
Private Codes() As String
Private NextCodes() As String
Private CodesBeg() As String
www.eeworm.com/read/384965/8827151
h peekbackstack.h
#include "IntArray.h"
class PeekbackStack : public IntArray {
private:
// const int static bos = -1;
const int static bos;
public:
// explicit PeekbackStack( int size )
PeekbackStack( int
www.eeworm.com/read/187222/8841225
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