java中数组截取用什么方法(java中怎么从一个数组中截取一定长度的元素放到新数组中)
其实java中数组截取用什么方法的问题并不复杂,但是又很多的朋友都不太了解java中怎么从一个数组中截取一定长度的元素放到新数组中,因此呢,今天小编就来为大家分享java中数组截取用什么方法的一些知识,希望可以帮助到大家,下面我们一起来看看这个问题的分析吧!
java中数组有没有length()方法string没有lenght()方法
java中数组是没有length()方法的,只有length属性,数组array.length返回的是该数组的长度。
字符串String是有length()方法的,str.length()返回的是该字符串的长度。
扩展资料
java数组常用方法:
1、声明一个数组
String[] aArray= new String[5];
String[] bArray={"a","b","c","d","e"};
String[] cArray= new String[]{"a","b","c","d","e"};
2、打印一个数组
String[] aArray= new String[5];
String[] bArray={"a","b","c","d","e"};
String[] cArray= new String[]{"a","b","c","d","e"};
3、根据数组创建ArrayList
String[] stringArray={"a","b","c","d","e"};
ArrayList<String> arrayList= new ArrayList<String>(Arrays.asList(stringArray));
System.out.println(arrayList);
4、判断数组内部是否包含某个值
String[] stringArray={"a","b","c","d","e"};
boolean b= Arrays.asList(stringArray).contains("a");
System.out.println(b);
5、连接两个数组
int[] intArray={ 1, 2, 3, 4, 5};
int[] intArray2={ 6, 7, 8, 9, 10};
int[] combinedIntArray= ArrayUtils.addAll(intArray, intArray2);
6、声明一个内联数组
method(new String[]{"a","b","c","d","e"})
String常用方法:
1、求字符串某一位置字符
charAt(int index)返回字符串中指定位置的字符;注意字符串中第一个字符索引是0,最后一个是
length()-1。
例如:
String str= new String("asdfzxc");
char ch= str.charAt(4);//ch= z
2、提取子串
用String类的substring方法可以提取字符串中的子串,该方法有两种常用参数:
1)substring(int beginIndex)该方法从beginIndex位置起,从当前字符串中取出剩余的字符作为一
个新的字符串返回。
2)substring(int beginIndex, int endIndex)该方法从beginIndex位置起,从当前字符串中取出到
endIndex-1位置的字符作为一个新的字符串返回。
例如:
String str1= new String("asdfzxc");
String str2= str1.substring(2);//str2="dfzxc"
String str3= str1.substring(2,5);//str3="dfz"
3、字符串比较
1)compareTo(String anotherString)该方法是对字符串内容按字典顺序进行大小比较,通过返回的
整数值指明当前字符串与参数字符串的大小关系。若当前对象比参数大则返回正整数,反之返回负
整数,相等返回0。
2)compareToIgnore(String anotherString)与compareTo方法相似,但忽略大小写。
3)equals(Object anotherObject)//比较当前字符串和参数字符串,在两个字符串相等的时候返回
true,否则返回false。
4)equalsIgnoreCase(String anotherString)//与equals方法相似,但忽略大小写。
例如:
String str1= new String("abc");
String str2= new String("ABC");
int a= str1.compareTo(str2);//a>0
int b= str1.compareToIgnoreCase(str2);//b=0
boolean c= str1.equals(str2);//c=false
boolean d= str1.equalsIgnoreCase(str2);//d=true
4、字符串连接
concat(String str)将参数中的字符串str连接到当前字符串的后面,效果等价于"+"。
例如:
String str="aa".concat("bb").concat("cc");
相当于String str="aa"+"bb"+"cc";
java中得到一个list,但只要取list的前3行数据,该怎么写啊
很简单,只需要调用List的get(intindex)方法就行,参数index就是索引,如果是前三行,对应的索引就是0、1、2。
方法有如下有两种:
一、先说一个最笨的方法。挨个把元素取出来,然后再挨个放到新的数组里面,代码如下:
Content a= list.get(0);//获取第一行数据
Content b= list.get(1);//获取第二行数据
Content c= list.get(2);//获取第三行数据
List<Content>list=newArrayList<Content>();
list.add("a");//添加第一行数据
list.add("b");//添加第二行数据
list.add("c");//添加第三行数据
二、通过for循环,取一个元素就放一个元素。代码如下
List<Content> list1= new ArrayList();
for{int i= 0; i< 3; i++}{
list1.add(list.get(i));
}
扩展资料:
List的一般用法
(1)声明 List<T> mlist= new List<T>();
eg: string[] Arr={"a","b","c"};
List<string> mlist= new List<string>(Arr);
(2)添加一个元素 List.Add(T item)
eg: mlist.Add("d");
(3)添加集合元素
eg: string[] Arr2={"f","g"."h"};
mlist.AddRange(Arr2);
(4)在index位置添加一个元素 Insert(int index,T item)
eg: mlist.Insert(1,"p");
(5)删除元素
List.Remove(T item)删除一个值
eg: mlist.Remove("a");
List.RemoveAt(int index);删除下标为index的元素
eg: mlist.RemoveAt(0);
List.RemoveRange(int index,int count);下标index开始,删除count个元素
eg:mlist.RemoveRange(3,2);
参考资料:
Orcle官方API接口-Java Platform SE 7-List
百度百科-list(计算机专业术语)
W3cSchool-Java数组
java中怎么从一个数组中截取一定长度的元素放到新数组中
可以利用substring(int beginIndex, int endIndex)函数截取固定长度片段。
具体示例代码如下:
public class woo{
public static void main(String args[])
{
//ID为430423198211231441,截取[19821123]
char IDNum[]={'4','3','0','4','2','3','1','9','8','2','1','1','2','3','1','4','4','1'};
String IDNum_string= String.copyValueOf(IDNum);
System.out.println(IDNum_string.substring(6, 14));
}
}
扩展资料:
1、String类的不可变性:
这个不可变性需要看源码,String类中有几个成员变量:
private final char[] value;//存放String的值
private final int offset;
private final int count;
他们都是final类型的,当你创建一个String之后它们就无法改变,所以这个不可变指的是String的值value不可变。
2、用String的时候需要注意什么?
由于String的不可变性所以应该避免创建大量的String对象,应为大量final类型的String对象会暂用大量的内存,内存可是很宝贵的。
3、String与StringBuilder的区别:
StringBuilder进行字符串的连接等操作时不会创建新的字符串对象,所以在操作字符串的时候推荐把一个String转换为StringBuilder再进行操作,这样可以节省内存。
4、StringBuilder和StringBuffer的区别:
它俩的区别就是StringBuffer是线程安全的,它的方法都加了锁,多在多线程中使用,在单线程中建议使用StringBuilder,会更快。
参考资料:
百度百科——substring函数
好了,文章到此结束,希望可以帮助到大家。