代码搜索:Lab
找到约 10,000 项符合「Lab」的源代码
代码结果 10,000
www.eeworm.com/read/230119/14304658
lst lab24.lst
C51 COMPILER V6.23a LAB24 08/11/2007 22:38:38 PAGE 1
C51 COMPILER V6.23a, COMPILATION OF MODULE LAB24
OBJECT MODULE PLACED IN
www.eeworm.com/read/230119/14304664
c lab24.c
/*可调时钟(无小时)和设定闹钟功能*/
#include
char code num[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x00};
char code tv[]={0xfe,0xfd,0xfb,0xf7};
char led[4];
unsigned int counter;
unsign
www.eeworm.com/read/230119/14304667
hex lab24.hex
:0F053E003F065B4F666D7D077F6F00FEFDFBF78D
:09054D0001173201153B011804ED
:10052C00E4FDFCC3ED9FEC9E50070DBD00010C805B
:01053C00F2CC
:01053D00229B
:10051200E4F519F51A120377051AE51A700205199E
:09052
www.eeworm.com/read/230119/14304679
obj lab24.obj
www.eeworm.com/read/127224/14368177
doc lab 3.doc
www.eeworm.com/read/127224/14368179
doc lab 6.doc
www.eeworm.com/read/127224/14368182
doc lab2.doc
www.eeworm.com/read/126657/14409925
cpp proxy_lab.cpp
// Purpose. Proxy design pattern lab (reference counting)
//
// Discussion. One of the four common situations in which the Proxy pattern is
// applicable is as a "smart reference" - a replacement f
www.eeworm.com/read/126657/14409927
cpp singleton_lab.cpp
// Purpose. Singleton design pattern lab.
//
// Problem. The application would like a single instance of globalObject
// to exist, and chooses to implement it as a global. Globals should
// alw
www.eeworm.com/read/126657/14409929
cpp templatemethod_lab.cpp
// Purpose. Template Method design pattern lab
//
// Problem. 2 different spell-checking objects have a lot of common
// functionality. This means there is: lots of duplicate code, no reuse,
// an