代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/144074/12819536
h array.h
#ifndef ARRAY_CLASS
#define ARRAY_CLASS
#include
#include
#ifndef NULL
const int NULL = 0;
#endif // NULL
enum ErrorType
{invalidArraySize, memoryAllocationErr
www.eeworm.com/read/143816/12839259
c array.c
#include
#include
#include
struct _Array
{
Object parent;
ADT* data;
int item_size;
int size;
};
Array* array_new (int p_item_size)
{
Array *se
www.eeworm.com/read/143816/12839281
h array.h
#ifndef _ARRAY_H_
#define _ARRAY_H_
#include
typedef struct _Array Array;
Array* array_new (int p_item_size);
Array* array_new_size (int p_item_size, int p_size);
void array_destroy (Ob
www.eeworm.com/read/143816/12839452
fc array.fc
void main (string args[])
{
int i;
int array[10];
for ( i=0; i
www.eeworm.com/read/143089/12899230
cpp array.cpp
//: C16:Array.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "../require.h"
#include
www.eeworm.com/read/243950/12905148
as array-properties.as
// makeswf -v 7 -r 1 -o array-properties-7.swf array-properties.as
#include "trace_properties.as"
var a = new Array ();
var b = [];
trace_properties (_global.Array, "_global", "Array");
trace_prope
www.eeworm.com/read/243950/12905187
as array2.as
// makeswf -v 6 -r 1 -o array2-6.swf array2.as
// makeswf -v 7 -r 1 -o array2-7.swf array2.as
// TODO: version 5 compatible version, inserting and reading, sorton
// define our own function to print
www.eeworm.com/read/243950/12905201
swf array.swf
www.eeworm.com/read/243950/12905363
as array-new.as
// makeswf -v 7 -s 200x150 -r 1 -o array-new.swf array-new.as
trace ("Check how \"Array\" and \"new Array\" react to parameters");
#include "values.as"
// check default values first
for (i = 0; i
www.eeworm.com/read/243369/12945974
h array.h
//-< ARRAY.H >-------------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Main Memory Database Management Syst