代码搜索:Arrays
找到约 6,123 项符合「Arrays」的源代码
代码结果 6,123
www.eeworm.com/read/321248/13410181
java arrays.java
package Array;
public class Arrays {
int index;
int[] array;
public Arrays(int max){
int[] array=new int[max];
index=0;
}
public void push(int key){
array[index]=key;
in
www.eeworm.com/read/320605/13421886
java arrays.java
//: c04:Arrays.java
// Arrays of primitives.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel.simpletest
www.eeworm.com/read/316300/13525605
h arrays.h
//
//
//
// Arrays.h
//
//
//
#ifndef MJARRAYS_H
#define MJARRAYS_H
#ifdef USE_VAL_ARRAY
#include
typedef std::valarray MJArray;
#else // ifdef USE_VAL_AR
www.eeworm.com/read/316300/13525613
cpp arrays.cpp
//
//
// Arrays.cpp
//
//
#include
#include
#include
MJArray::MJArray(unsigned long size)
: Size(size), Capacity(size)
{
if (Si
www.eeworm.com/read/311052/13637911
class arrays.class
www.eeworm.com/read/311052/13637912
java arrays.java
//: Arrays.java
// Arrays of primitives.
public class Arrays {
public static void main(String[] args) {
int[] a1 = { 1, 2, 3, 4, 5 };
int[] a2;
a2 = a1;
for(int i = 0; i < a2.length; i
www.eeworm.com/read/311046/13638013
java arrays.java
//: Arrays.java
// Arrays of primitives.
public class Arrays {
public static void main(String[] args) {
int[] a1 = { 1, 2, 3, 4, 5 };
int[] a2;
a2 = a1;
for(int i = 0; i < a2.length; i
www.eeworm.com/read/152629/5672991
java arrays.java
/* Copyright (C) 2003 Univ. of Massachusetts Amherst, Computer Science Dept.
This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).
http://www.cs.umass.edu/~mccallum/mallet
Th
www.eeworm.com/read/151345/5684165
h arrays.h
/*------------------------------------------------------------------------*/
/* */
/* ARRAYS.H
www.eeworm.com/read/151159/5685726
h arrays.h
/*------------------------------------------------------------------------*/
/* */
/* ARRAYS.H