代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/296364/8108817
def gpscplud.def
LIBRARY GPS103UD
DESCRIPTION 'GPS Control Panel Applet'
EXPORTS
; Explicit exports can go here
CPlApplet @1
www.eeworm.com/read/296364/8108829
def gpscplu.def
LIBRARY GPS103U
DESCRIPTION 'GPS Control Panel Applet'
EXPORTS
; Explicit exports can go here
CPlApplet @1
www.eeworm.com/read/296364/8108833
def gpscpld.def
LIBRARY GPS103D
DESCRIPTION 'GPSLIB Control Panel Applet'
EXPORTS
; Explicit exports can go here
CPlApplet @1
www.eeworm.com/read/296364/8108847
def gpscpl.def
LIBRARY GPS103
DESCRIPTION 'GPSLIB Control Panel Applet'
EXPORTS
; Explicit exports can go here
CPlApplet @1
www.eeworm.com/read/296039/8127136
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public adors As New ADODB.Recordset
Public Function cn() As ADODB.Connection '定义函数
'返回一个数据库连接
Set cn = New ADODB.Connection
cn.Open "Provid
www.eeworm.com/read/245306/12804981
txt copyright.txt
Read me!
COPYRIGHTS--
copyright 1998-1999 Piaz all rights reserved
No reproduction or republication without explicit permission from the author.
If you wish to have any comments and suggesti
www.eeworm.com/read/143089/12899604
cpp explicitkeyword.cpp
//: C12:ExplicitKeyword.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using the "explicit" key
www.eeworm.com/read/142663/12931501
txt 深度探索c++对象模型(5).txt
上一篇我们对合成确省的构造函数做了一个了解,这一篇我们继续看看构造函数这个有趣的东西.
Copy Constructor是什么?我们经常看到代码中有一些这样的函数调用方式X(X&) (“X of X ref”). 这个函数用用户自定义类型作为参数,那它的参数的构造便是由Copy Constructor负责的. 可见这个玩意非常重要,实际上Copy Constructor是由编译器自动合成的,不需 ...
www.eeworm.com/read/329686/12938368
bas mdlstandard.bas
Attribute VB_Name = "mdlStandard"
Option Explicit
'0-表示教师身份;1-表示学生身份
Public gnUserType As Integer
Public gsUserName As String
Sub Main()
gnUserType = 0
gsUserName = ""
f