代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/149542/12365982
bas mdlstandard.bas
Attribute VB_Name = "mdlStandard"
Option Explicit
Sub main()
''实例化一个About窗口类
Dim frm As New frmAbout
''调用About窗口对象的ShowDialog方法显示窗体
frm.ShowDialog 1, "这是标题!", "这是程序描述!", "版本:2.1.5"
www.eeworm.com/read/336441/12443630
tcl compile.tcl
# if simulation was running then quit
quit -sim
set origin [pwd]
if {![file isdirectory work]} {
exec vlib work
}
#cd $origin
# map lpm library, for ModelSim to find lpm objects
ex
www.eeworm.com/read/130828/14173251
h cirbuf.h
//////////cirbuf.h///////
class cirbuf
{
public:
enum{ D_SIZE = 16 };
explicit cirbuf( int size = D_SIZE );
int produce(char c);
int consume();
bool isEmpty(){return(length == 0);}
bo
www.eeworm.com/read/231379/14237380
bas const.bas
Attribute VB_Name = "Comst"
Option Explicit
Public Const Conn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=CRM.mdb"
www.eeworm.com/read/127959/14325295
bas main.bas
Attribute VB_Name = "mainSub"
'CODE Manger By BcodeXRose
'Module2
Option Explicit
'##################################################################
'## 过程名称:Main
'## 参数: 无
'###############
www.eeworm.com/read/227010/14444530
bas modglobal.bas
Attribute VB_Name = "modGlobal"
Option Explicit
Public Sub Main()
Load frmNWCheck
frmNWCheck.Show
End Sub
www.eeworm.com/read/226560/14458923
cpp static_cast.cpp
//: C03:static_cast.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
void func(int) {}
int main()
www.eeworm.com/read/224560/14585032
vb application.designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:2.0.50727.42
'
' Changes to
www.eeworm.com/read/123064/14650111
asm expimp.asm
;
; Test of explicitly and implicitly sized operands
;
add esi,2 ; Implicit
add esi,123456h ; Implicit
add esi,byte 2 ; Explicit
add esi,dword 2 ; Explicit
add esi,dword 123456h ;
www.eeworm.com/read/122684/14675200
cpp statcast.cpp
//: C24:Statcast.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Examples of static_cast