代码搜索:通讯接口
找到约 10,000 项符合「通讯接口」的源代码
代码结果 10,000
www.eeworm.com/read/126819/14400622
java implementinterface.java
// 程序:接口
// 范例文件:ImplementInterface.java
interface SuperInterface
{
int a = 5;
int b = 10;
}
interface ChildInterface extends SuperInterface
{
int addNumber(
www.eeworm.com/read/116936/14948581
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}
www.eeworm.com/read/215854/15038020
h cntritem.h
// CntrItem.h :CContainerCntrItem 类的接口
//
#pragma once
class CContainerDoc;
class CContainerView;
class CContainerCntrItem : public COleClientItem
{
DECLARE_SERIAL(CContainerCntrItem)
www.eeworm.com/read/114696/15041675
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}
www.eeworm.com/read/215642/15055821
java implementinterface.java
// 程序:接口
// 范例文件:ImplementInterface.java
interface SuperInterface
{
int a = 5;
int b = 10;
}
interface ChildInterface extends SuperInterface
{
int addNumber(
www.eeworm.com/read/212209/15163260
h cntritem.h
// CntrItem.h :CContainerCntrItem 类的接口
//
#pragma once
class CContainerDoc;
class CContainerView;
class CContainerCntrItem : public COleClientItem
{
DECLARE_SERIAL(CContainerCntrItem)
www.eeworm.com/read/211772/15174042
h ii_mysql.h
//====================================================================
// 文件名: ii_mysql.h
//
// 文件描述:
// ------------------------------------------------------------------
// 跨平台通用数据库接口mysql数据库插件
www.eeworm.com/read/211576/15177312
h zsocket.h
///////////////////////////////////////////////////////////////////
// ZSocket.h: interface for the CZSocket class.
// 创建人:钟广荣
// 创建时间:5.28
// 功能:封装SOCKET 通信接口
///////////////////////////////////
www.eeworm.com/read/208536/15245611
java implementinterface.java
// 程序:接口
// 范例文件:ImplementInterface.java
interface SuperInterface
{
int a = 5;
int b = 10;
}
interface ChildInterface extends SuperInterface
{
int addNumber(
www.eeworm.com/read/13472/276499
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}