代码搜索:Implement
找到约 10,000 项符合「Implement」的源代码
代码结果 10,000
www.eeworm.com/read/296923/8069982
txt java代码编写的一般性指导 (转贴).txt
作者:赖皮王子
日期:2001-6-9 17:01:30
作者 : javaduke(www.dukejava.com)
(1) 类名首字母应该大写。字段、方法以及对象(句柄)的首字母应小写。对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。例如:
ThisIsAClassName
thisIsMethodOrFieldName
若在定义中出现了常数初
www.eeworm.com/read/332276/12765068
txt untitled-16.txt
用程序可以提供用户希望的向下兼容性。
如果要编写一个具有MFC可视化模式支持的可串行化类,一般需要两步:
1.将<mark>IMPLEMENT</mark>SERIAL宏中的模式号与值VERSIONABLE.SCHEMA相或。
2.如果从档案加载对象时需要调用 CArchive:: Getobjectschema,则要修改类的 Serialize
函数,并相应地调整其并 ...
www.eeworm.com/read/331935/12796529
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/245113/12819038
txt java代码编写的一般性指导 (转贴).txt
作者:赖皮王子
日期:2001-6-9 17:01:30
作者 : javaduke(www.dukejava.com)
(1) 类名首字母应该大写。字段、方法以及对象(句柄)的首字母应小写。对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。例如:
ThisIsAClassName
thisIsMethodOrFieldName
若在定义中出现了常数初
www.eeworm.com/read/243813/12914383
java integermatrix.java
// IntegerMatrix.java:
// Declare IntegerMatrix derived from GenericMatrix
public class IntegerMatrix extends GenericMatrix
{
// Construct an IntegerMatrix
public IntegerMatrix(Integer[][] m)
www.eeworm.com/read/243813/12915171
java rationalmatrix.java
// RationalMatrix.java:
// Declare RationalMatrix derived from GenericMatrix
public class RationalMatrix extends GenericMatrix
{
// Construct a RationalMatrix for a given Ratonal array
public
www.eeworm.com/read/329142/12975793
pro statusline.pro
/*****************************************************************************
Copyright (c) Prolog Development Center A/S
***********************************************
www.eeworm.com/read/329142/12975807
pro buttondemo.pro
/*****************************************************************************
Copyright (c) Prolog Development Center A/S
***********************************************
www.eeworm.com/read/141937/12976861
pas childwin.pas
unit ChildWin;
interface
// MDI Child for the multi-threaded text editor.
// Exercise for the reader: implement find & replace.
// Copyright
www.eeworm.com/read/141937/12976952
pas cltnlist.pas
unit CltnList;
(*
Implement the IList and IStack collections using doubly-linked lists.
The TLinkedList class keeps track of the head and tail nodes and a
count of the number of nodes in