代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/16793/691035
c array.c
/*
* array.c - functions to create, destroy, access, and manipulate arrays
* of strings.
*
* Arrays are sparse doubly-linked lists. An element's index is stored
* with it.
*
* Chet Ramey
www.eeworm.com/read/16793/691120
array-at-star
# test the expansion of ${array[@]} and ${array[*]}, both quoted and
# unquoted. the expansions should be exactly analogous to the
# expansions of $@ and $* quoted and unquoted
A=(a b)
recho "${A[*]
www.eeworm.com/read/16793/691195
tests array.tests
# this is needed so that the bad assignments (b[]=bcde, for example) do not
# cause fatal shell errors when in posix mode
set +o posix
set +a
# The calls to egrep -v are to filter out builtin array v
www.eeworm.com/read/16793/691204
right array.right
./array.tests: line 15: syntax error near unexpected token `&'
./array.tests: line 15: `test=(first & second)'
1
abcde
abcde
abcde bdef
abcde bdef
declare -a BASH_ARGC='()'
declare -a BASH_ARGV='()'
www.eeworm.com/read/16793/691350
run-array
echo "warning: all of these tests will fail if arrays have not" >&2
echo "warning: been compiled into the shell" >&2
echo "warning: the BASH_ARGC and BASH_ARGV tests will fail if debugging support" >&
www.eeworm.com/read/16793/691723
h array.h
/* array.h -- definitions for the interface exported by array.c that allows
the rest of the shell to manipulate array variables. */
/* Copyright (C) 1997-2009 Free Software Foundation, Inc.
Th
www.eeworm.com/read/492368/1175810
java array.java
//$Id: Array.java,v 1.7.2.2 2003/11/09 01:46:25 oneovthafew Exp $
package net.sf.hibernate.mapping;
import net.sf.hibernate.type.PersistentCollectionType;
import net.sf.hibernate.type.TypeFactory;
/