代码搜索:3.5mm接口
找到约 10,000 项符合「3.5mm接口」的源代码
代码结果 10,000
www.eeworm.com/read/269637/11085239
h leftview.h
// LeftView.h : CLeftView 类的接口
//
#pragma once
#include "afxcmn.h"
#include "smbiosinformation.h"
class CHW_sigalDoc;
class CHwReadWrite;
class CHwReadWrite;
class CLeftView : public C
www.eeworm.com/read/269637/11085322
h mainfrm.h
// MainFrm.h : CMainFrame 类的接口
//
#pragma once
class CHW_sigalView;
class CMainFrame : public CFrameWnd
{
protected: // 仅从序列化创建
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
// 属性
www.eeworm.com/read/269231/11104270
java sample9_13.java
package wyf.jc;
//声明接口
interface IFather
{
}
interface ISon extends IFather
{
}
//声明类
class Father
{
}
class Son extends Father implements ISon
{
}
public class Sample9_13
{
publi
www.eeworm.com/read/414336/11120726
c canbus.c
/********************************************
对外接口 Can_Receive(从CanBus接收数据)
Can_Send(从CanBus发送数据)
INITCAN(初始化)
CanINTR(中断函数)
ChkEndC(检查帧发送结束)
****
www.eeworm.com/read/266116/11239710
cpp demo_4_friend_function_1.cpp
//**************************************************************
//友元函数
#include
#include
class Point //Point类定义
{
public: //外部接口
Point(int xx=0, int yy=0) {X=xx;Y=
www.eeworm.com/read/266116/11239780
cpp demo_constructor_a2.cpp
//***************************************************
# include
class Clock //类定义
{
public: //外部接口(公有成员函数)
Clock(int NewH=0, int NewM=0, int NewS=0); //构造函数
void SetTime
www.eeworm.com/read/266116/11239783
cpp demo_constructor_a3.cpp
//***************************************************
# include
class Clock //类定义
{
public: //外部接口(公有成员函数)
Clock(int NewH=0, int NewM=0, int NewS=0); //构造函数
void SetTime
www.eeworm.com/read/411408/11246345
cpp 00065.cpp
#include
using namespace std;
class Lenovo //基类Lenovo声明
{
public: //外部接口
virtual void display()
{ cout
www.eeworm.com/read/411061/11258180
vb database.vb
Imports System.Data
Imports System.Data.SqlClient
Imports System.ComponentModel
Public Class DataBase
'实现接口IDisposable
Implements IDisposable
'数据库连接对象
Private SqlConn As SqlConn
www.eeworm.com/read/265414/11264497
java shapeexample2.java
interface shape //图形接口shape
{ public abstract double area();
public double PI=Math.PI;
}
class tuoyuan implements shape //椭圆形类
{ double a,b;
tuoyuan(double a,double b)