代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/266379/11229089
cpp fig03_07.cpp
template
class Vector
{
public:
explicit Vector( int initSize = 0 )
: theSize( initSize ), theCapacity( initSize + SPARE_CAPACITY )
{ objects = new Object[ th
www.eeworm.com/read/266253/11235278
makefile
OBJECTS = mkdosfs.o
all: mkdosfs
pcmkdosfs: $(OBJECTS)
$(CC) $(LDFLAGS) $^ -o $@
.c.o:
$(CC) $(CFLAGS) -c $< -o $@
install: mkdosfs
mkdir -p $(SBINDIR) $(MANDIR)
install -m 755 m
www.eeworm.com/read/249541/12489410
makefile
# Makefile for CCITT subroutines and sample programs
#
# Modify the CC definition to invoke your ANSI-C compiler
#
CC = acc
# Rules to build sample programs do not depend on a UNIX library
www.eeworm.com/read/335854/12492311
h memsys.h
/*----------------------------------------------------------------------
File : memsys.h
Contents: memory management system for equally sized (small) objects
Author : Christian Borgelt
His
www.eeworm.com/read/248954/12530679
cpp 6_44.cpp
#include
using namespace std;
class Point //类的声明
{ int X,Y,Z;
public: //外部接口
//其它成员函数同上案例,这里略…
Point(int x=0, int y=0,int z=0) {X=x;Y=y;Z=z;countP++;} //构造函数
static in
www.eeworm.com/read/335174/12547165
java game.java
// Decompiled by DJ v3.9.9.91 Copyright 2005 Atanas Neshkov Date: 2006-3-25 下午
// 09:40:59
//Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for
// new version!
//Decompil