代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3268800
c array.c
/* WinBond bug report
this is a compile test. At one time static arrays over 500 elements
didn't work. We'll test both global and local array. If it compiles at
all, it it passes.
*/
#incl
www.eeworm.com/read/340665/3282905
java array.java
// FileDescriptor.java - Open file or device
/* Copyright (C) 1999 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj
www.eeworm.com/read/340665/3283385
java array.java
/* Array.java -- Interface for accessing SQL array object
Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can
www.eeworm.com/read/338159/3320016
cpp array.cpp
/***************************/
/* FastScript v1.0 */
/* Arrays demo */
/***************************/
int i, j;
string ar[10], s;
void OK(string s)
{
ShowMessage(s);
www.eeworm.com/read/338159/3320034
cpp array.cpp
/***************************/
/* FastScript v1.0 */
/* Arrays demo */
/***************************/
{
string ar[10];
for(int i = 0; i < 10; i++)
ar[i] = IntToStr
www.eeworm.com/read/338159/3320053
js array.js
//***************************/
//* FastScript v1.0 */
//* Arrays demo */
//***************************/
var ar[10];
for(var i = 0; i < 10; i++)
ar[i] = IntToStr
www.eeworm.com/read/338159/3320066
vb array.vb
'**************************
' FastScript v1.0
' Arrays demo
'**************************
dim i, j
dim ar[10]
dim s
for i = 0 to 9
ar[i] = IntToStr(i)
next
s =
www.eeworm.com/read/338159/3320098
pas array.pas
{**************************}
{ FastScript v1.0 }
{ Arrays demo }
{**************************}
var
i, j: Integer;
ar: array[0..9] of String;
s: String;
begin
www.eeworm.com/read/336825/3347209
h array.h
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length, int size);
extern void Array_free(T *array);
extern int Array_length(T array);
e
www.eeworm.com/read/336825/3347248
c array.c
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
#include "mem.h"
#define T Array_T
T Array_new(int length, int size) {
T array;
NEW(array);
if (