代码搜索:Implement
找到约 10,000 项符合「Implement」的源代码
代码结果 10,000
www.eeworm.com/read/259433/11791819
pas getidaddimpl.pas
{ Invokable implementation File for TGetIDadd which implements IGetIDadd }
unit GetIDaddImpl;
interface
uses SysUtils,InvokeRegistry, Types, XSBuiltIns, GetIDaddIntf, Unit1;
type
{ TG
www.eeworm.com/read/258599/11852078
c memcmp.c
#include
/*lint -e613
memcmp is defined here because some vendors don't implement
it, strcmp, or strncmp correctly; they must treat the bytes
as unsigned chars.
*/
int memcmp(const
www.eeworm.com/read/258599/11852116
c strncmp.c
#include
/*lint -e613
strncmp is defined here because some vendors don't implement
it, strcmp, or memcmp correctly; they must treat the bytes
as unsigned chars.
*/
int strncmp(const
www.eeworm.com/read/344457/11877878
ptf ledwater.ptf
[ledwater]
Generate Programming File=true
Design Entry Utilities=false
User Constraints=true
Fit=true
Implement Design=false
www.eeworm.com/read/344454/11878226
ptf 7led.ptf
[XC95108 PC84-XST Verilog]
Design Entry Utilities=false
[sled]
Generate Programming File=true
Design Entry Utilities=false
User Constraints=true
Fit=false
Implement Design=false
www.eeworm.com/read/258191/11879009
cpp cppcheck.cpp
//: C18:Cppcheck.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Configures .h & .cpp files
//
www.eeworm.com/read/154432/11961334
txt java代码编写的30条建议!.txt
1) 类名首字母应该大写。字段、方法以及对象(句柄)的首字母应小写。对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。例如:
ThisIsAClassName
thisIsMethodOrFieldName
若在定义中出现了常数初始化字符,则大写static final基本类型标识符中的所有字母。这样便可标志出它们属于编译期的常数。
Java包(Packa ...
www.eeworm.com/read/153678/12013315
cpp cppcheck.cpp
//: C18:Cppcheck.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Configures .h & .cpp files
www.eeworm.com/read/255273/12091797
java basicplayerlistener.java
package javazoom.jlGui;
/**
* BasicPlayerListener.
*/
/**
* BasicPlayerListener.
* This interface defines method that a player should implement to be notify
* from Audio events.
* Ho
www.eeworm.com/read/341217/12099285
java asciitext.java
package com.javapatterns.builder.rtfreader;
public class ASCIIText
{
public void append(char c)
{ //Implement the code here
}
}