代码搜索结果
找到约 43,238 项符合
Clock 的代码
clock.c
/*C**************************************************************************
* NAME: clock.c
*----------------------------------------------------------------------------
* Copyright (c) 2
clock.h
/*H**************************************************************************
* NAME: clock.h
*----------------------------------------------------------------------------
* Copyright (c) 2
clock.lst
C51 COMPILER V7.50 CLOCK 02/16/2009 09:59:54 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE CLOCK
OBJECT MODULE PLACED IN c
clock.cmd
dir .
target sparclite com2
file clock
load
target remote com2
b main
c
clock.h
//Clock.h
class Clock
{
public:
Clock() ;
long int gettime() ;
void showtime() ;
void change( long int ) ;
private:
int currenttime ;
int hour ;
int minute ;
int second ;
} ;
clock.cpp
//Clock.cpp
#include"All.h"
Clock::Clock()
{
currenttime = time(0) ;
}
long int Clock::gettime()
{
return currenttime ;
}
void Clock::showtime()
{
int t = time(0) ;
int toda
clock.rc2
//
// CLOCK.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
clock.dsp
# Microsoft Developer Studio Project File - Name="clock" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) App
clock.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "clock"=.\clock.dsp
clock.plg
Build Log
--------------------Configuration: clock - Win32 Debug--------------------
Command Lines
Creating temporary file "G:\DOCUME~1\huangwe