代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/141115/13037171
vb mediaexception.vb
Option Strict
Option Explicit
'
' MediaException class
' written in VB.NET Version: 1.0
' by The KPD-Team Date: 2002/01/16
' C
www.eeworm.com/read/141115/13037177
vb wavefile.vb
Option Strict
Option Explicit
'
' WaveFile class
' written in VB.NET Version: 1.0
' by The KPD-Team Date: 2002/01/16
' Copyrig
www.eeworm.com/read/140545/13076469
cpp copyints.cpp
//: C06:CopyInts.cpp
// Copies ints without an explicit loop
#include
#include
#include // For size_t
using namespace std;
int main() {
int a[] = {10, 20, 3
www.eeworm.com/read/140161/13104052
lx makefile.lx
CC = cc386 /c
ASM = nasm -fobj
LIB = xlib
LINK = valx
.c.obj:
$(CC) $<
# *List Macros*
EXE_dependencies = \
itouch.obj \
usage.obj \
args.obj \
ext.obj \
file.obj \
fatal.obj
#
www.eeworm.com/read/140161/13104080
dos makefile.dos
CC = cc386 /c
ASM = nasm -fobj
LIB = xlib
LINK = valx
.c.obj:
$(CC) $<
# *List Macros*
EXE_dependencies = \
itouch.obj \
usage.obj \
args.obj \
ext.obj \
file.obj \
fatal.obj
#
www.eeworm.com/read/325023/13232500
java initialvalues2.java
//: initialization/InitialValues2.java
// Providing explicit initial values.
public class InitialValues2 {
boolean bool = true;
char ch = 'x';
byte b = 47;
short s = 0xff;
int i = 9