代码搜索:INTERFACES
找到约 10,000 项符合「INTERFACES」的源代码
代码结果 10,000
www.eeworm.com/read/381515/9088681
h iface.h
//
// Iface.h -
// Declarations of interfaces, IIDs, and CLSID
// shared by the client and the component.
//
interface IX : IUnknown
{
virtual void pascal Fx() = 0 ;
};
interface IY : IUnkno
www.eeworm.com/read/381515/9088751
h iface.h
//
// Iface.h -
// Declarations of interfaces, IIDs, and CLSID
// shared by the client and the component.
//
interface IX : IUnknown
{
virtual void pascal Fx() = 0 ;
};
interface IY : IUnkno
www.eeworm.com/read/281848/9130436
java ex14.java
// interfaces/Ex14.java
// TIJ4 Chapter Interfaces, Exercise 14, page 330
/* Create three interfaces, each with two methods. Inherit a new interface
* that combines the three, adding a new method.
www.eeworm.com/read/281848/9130458
java testex6.java
// interfaces.TestEx6.java
// TIJ4 Chapter Interfaces, Exercise 6, page 320
// Prove that all the methods in an interface are automatically public
/* Solution includes, in package interfaces.ex6:
www.eeworm.com/read/379604/9192213
diz file_id.diz
BF-SDK Version 1.1
~~~~~~~~~~~~~~~~~~
software development kit for 16bit DOS and
Windows applications:
* supports the Blowfish encryption algorithm
designed by Bruce Schneier
* ECB and CBC imp
www.eeworm.com/read/181573/9245626
linux
====================
libnids-1.17
====================
The following applies to Linux only.
Linux 2.0.x k
www.eeworm.com/read/377523/9272767
java months.java
//: c08:Months.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Using interfaces to create groups of constants.
package c08;
www.eeworm.com/read/377523/9272824
java iinterface.java
//: c08:IInterface.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Static inner classes inside interfaces.
interface IInt