代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/173909/9630334
license readme.license
Original GPL code was taken from Xine project
(http://xine.sf.net). Relicensed to LGPL with explicit approval from
all copyright holders, if you're interested, you can see thread at:
www.eeworm.com/read/172641/9698384
def phone.def
LIBRARY Phone
DESCRIPTION 'Phone Windows Dynamic Link Library'
EXETYPE WINDOWS
EXPORTS
; Explicit exports can go here
StartPhone @1
ClosePhone @2
www.eeworm.com/read/367274/9763690
asm expimp.asm
;Testname=O0; Arguments=-O0 -fbin -oexpimp.bin; Files=stdout stderr expimp.bin
;Testname=O1; Arguments=-O1 -fbin -oexpimp.bin; Files=stdout stderr expimp.bin
;Testname=O2; Arguments=-O2 -fbin -oexpi
www.eeworm.com/read/366902/9793588
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/415796/11053471
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
' Copyright
www.eeworm.com/read/266379/11229043
cpp fig01_14.cpp
class IntCell
{
public:
explicit IntCell( int initialValue = 0 )
{ storedValue = new int( initialValue ); }
int read( ) const
{ return *storedValue; }
void write( in