代码搜索:arrays
找到约 6,123 项符合「arrays」的源代码
代码结果 6,123
www.eeworm.com/read/283217/9035179
for arrays.for
www.eeworm.com/read/197917/7962168
for arrays.for
www.eeworm.com/read/319910/13439724
for arrays.for
www.eeworm.com/read/131315/5931679
in arrays.in
whatis p.a
stop at 12
run
print a
print a[3], a[4], a[5]
step
step
step
step
where
print b, c
print b[BLUE]
www.eeworm.com/read/131315/5931799
in arrays.in
whatis p.a
stop at 10
run
print arrays.a
step
print a[3], a[4], a[5]
step
print arrays.a
www.eeworm.com/read/467516/1500212
as arrays.as
package flare.util
{
/**
* Utility methods for working with arrays.
*/
public class Arrays
{
public static const EMPTY:Array = new Array(0);
/**
* Constructor, throws an err
www.eeworm.com/read/188093/8572915
h arrays.h
/*------------------------------------------------------------------------*/
/* */
/* ARRAYS.H
www.eeworm.com/read/431997/8640212
cpp arrays.cpp
/*
Sample Array Declaration and Use
File: ARRAYS.CPP
Version: 3.0
Created: 9/26/96
Last Updated: 10/20/99
Written by: Dr. C. S. Tritt
*/
#include // Header for stream I/O
#
www.eeworm.com/read/187222/8841229
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/284998/8877350
cpp arrays.cpp
//: C03:Arrays.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include
using namespace