代码搜索:实例教学

找到约 10,000 项符合「实例教学」的源代码

代码结果 10,000
www.eeworm.com/read/232657/4696836

java singleton.java

public class Singleton { private static Singleton singleton = new Singleton(); private Singleton() { System.out.println("已产生对象实例。"); } public static Singleton getInstance(
www.eeworm.com/read/281160/4118686

cpp 04win32appdemo.cpp

/////////////////////////////////////////////////////////////// // 04Win32AppDemo.cpp文件 #include "stdafx.h" int APIENTRY WinMain(HINSTANCE hInstance, // 本模块的实例句柄 HINSTAN
www.eeworm.com/read/445143/1726206

sqe 滚动字幕.sqe

========== Description Part Begin ========== name = "滚动字幕"; description = "实例会向上或向下滚动。"; version = "1.00"; bin = "Scrolling.bin"; ========== Description Part End ========== ========== Paramete
www.eeworm.com/read/445143/1726242

sqe 挤压.sqe

========== Description Part Begin ========== name = "挤压"; description = "实例被挤压直到消失。"; version = "1.00"; bin = "squeezed.bin"; ========== Description Part End ========== ========== Parameter Pa
www.eeworm.com/read/445143/1726243

sqe 电波.sqe

========== Description Part Begin ========== name = "电波"; description = "实例的大小有规律的变化。"; version = "1.00"; bin = "ElectronicWave.bin"; ========== Description Part End ========== ========== Para
www.eeworm.com/read/388809/2546225

txt 例4-2.txt

class Lader{ double above,height; //实例变量 static double bottom; //类变量 void setAbove(double a){ above=a; } void setBottom(double b){ bottom=b; } dou
www.eeworm.com/read/293928/8262402

c 4_2_1.c

/* ======================================== */ /* 程式实例: 4_2_1.c */ /* 含开头节点的环状链结串列的多项式 */ /* ======================================== */ #include struc
www.eeworm.com/read/293928/8262427

c 6_2_2.c

/* ======================================== */ /* 程式实例: 6_2_2.c */ /* 使用列印数组函数来说明递归调用 */ /* ======================================== */ int list[6] = { 1, 2, 3,
www.eeworm.com/read/293928/8262491

c 5_13_2.c

/* ======================================== */ /* 程式实例: 5_13_2.c */ /* 使用链结串列来构建输出限制性双队列 */ /* ======================================== */ #include struct
www.eeworm.com/read/293928/8262632

c 3_1_1c.c

/* ======================================== */ /* 程式实例: 3_1_1c.c */ /* 计算各科平均成绩(动态记忆体配置) */ /* ======================================== */ #include void m