java的charat
‘壹’ charAt() java中什么作用 ~
java.lang.String.charAt()方法返回指定索引处的char值。索引范围是从0到length() - 1。对于数组索引,序列的第一个char值是在索引为0,索引1,依此类推。
以下是声明java.lang.String.charAt()方法
public char charAt(int index)
参数
index-- 这是该指数的char值.
返回值
此方法返回这个字符串的指定索引处的char值。第一个char值的索引为0.
异常
IndexOutOfBoundsException-- 如果index参数为负或不小于该字符串的长度.
实例
下面的示例演示使用的java.lang.String.charAt()方法.
packagecom.yii;
importjava.lang.*;
publicclassStringDemo{
publicstaticvoidmain(String[]args){
Stringstr="Thisisyii";
//printscharacterat1stlocation
System.out.println(str.charAt(0));
//printscharacterat5thlocationi.ewhite-spacecharacter
System.out.println(str.charAt(4));
//printscharacterat18thlocation
System.out.println(str.charAt(17));
}
}
编译和运行上面的程序,这将产生以下结果。它也会打印空白字符。
T
p
‘贰’ java中charAt是什么意思
charAt
public char charAt(int index)返回指定索引处的 char 值。索引范围为从 0 到 length() - 1。序列的第一个 char 值位于索引 0 处,第二个位于索引 1 处,依此类推,这类似于数组索引。
如果索引指定的 char 值是代理项,则返回代理项值。
指定者:
接口 CharSequence 中的 charAt
参数:
index - char 值的索引。
返回:
此字符串指定索引处的 char 值。第一个 char 值位于索引 0 处。
抛出:
IndexOutOfBoundsException - 如果 index 参数为负或小于此字符串的长度。
‘叁’ java中关于charAT()的用法问题
publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstubStringstr="student";for(inti=0;i<str.length();i++){System.out.println("=="+str.charAt(i));}
}
上例输出:
==s==t==u==d==e==n==t
所以,charAt用法就是取出字符串第i个位置上的字符,返回char类型!!!!
‘肆’ java 把charAt换成什么
charAt是针对字符串的操作,返回值是一个char字符,你的num数组就num[0]是你产生的随机数,而且你的int数组的长度只为1,而且你的循环会空指针异常的,刚才写了以个程序只是把你的程序改的能运行了,你的循环有空指针异常的,楼上的写的charAT是对的,其实不用charAT的可以直接这么写
public
class
Assignment2_Question1b
{
public
static
void
main(String[]
args)
{
int
sum
=
0;
int
num
=
(int)
(Math.random()
*
100000)
;
//
num.toString();
System.out.println(num);
while(num>0){
sum
=
sum*10+
num%10;
num=num/10;
}
System.out.println(sum);
}
‘伍’ java charAt的用法
charat_网络charat(int
index)方法是一个能够用来检索特定索引下的字符的string实例的方法。
charat()方法返回一个位于提供给它的参数索引处的字符。
s.chatat(i)的意义就是,i为条件,就是第几个字符,i的取值范围为小于s的长度
‘陆’ java 方法CharAT()用来干嘛
Java程序中strObj.charAt(index)方法,返回指定索引位置处的字符。CharAt()方法返回一个字符值,该字符位于指定索引位置。字符串中的第一个字符的索引为 0,第二个的索引为 1,等等。超出有效范围的索引值返回空字符串。
//下面的示例说明了charAt()方法的用法
functioncharAtTest(n){
varstr="ABCDEFGHIJKLMNOPQRSTUVWXYZ";//初始化变量。
vars;//声名变量。
s=str.charAt(n-1);//从索引为n–1的位置处
return(s);//返回字符。
}
‘柒’ 关于java的charAt()函数对于空格的处理
java的charAt()函数如果遇到空格,就会跳过,实例如下:
packagecom.qiu.lin.he;
publicclassCeShi{
publicstaticvoidmain(String[]args){
charch="abc".charAt(1);//当第一个为空格,测试是否会输出空格
System.out.println("当charAt遇到空格的处理方式如下"+ch);
}
}
结果如下:
‘捌’ Java里charAt具体用法
1.描述
java.lang.String.charAt() 方法返回指定索引处的char值。索引范围是从0到length() - 1。对于数组索引,序列的第一个char值是在索引为0,索引1,依此类推,
2.声明
以下是声明java.lang.String.charAt()方法
public char charAt(int index)
参数
index -- 这是该指数的char值.
返回值
此方法返回这个字符串的指定索引处的char值。第一个char值的索引为0.
异常
IndexOutOfBoundsException -- 如果index参数为负或不小于该字符串的长度.
实例
3.下面的示例演示使用的java.lang.String.charAt()方法.
package com.yii;
import java.lang.*;
public class StringDemo {
public static void main(String[] args) {
String str = "This is yii";
// prints character at 1st location
System.out.println(str.charAt(0));
// prints character at 5th location i.e white-space character
System.out.println(str.charAt(4));
// prints character at 18th location
System.out.println(str.charAt(17));
}
}
编译和运行上面的程序,这将产生以下结果。它也会打印空白字符。
T
p
‘玖’ java方法charAt中,At代表什么意思
JavaString类 charAt() 方法:
charAt() 方法用于返回指定索引处的字符。索引范围为从 0 到 length() - 1。
语法:public char charAt(int index)
参数:index-- 字符的索引。
返回值:返回指定索引处的字符。
实例:
publicclassTest{
publicstaticvoidmain(Stringargs[]){
Strings="www.runoob.com";
charresult=s.charAt(4);
System.out.println(result);
}
}
运行结果:
r
s.charAt(4);可以理解成:s这个字符串在(At)索引为4的位置所对应的char值,At我的理解是“在什么位置”的意思。
不知道这样说楼主能明白么?楼主若觉得回答有所帮助,望采纳,谢谢!
‘拾’ java中charat是什么意思
是java中String的一个方法,如"dsagfjsadgf".chatAt(5); 代表的意思是从第0个开始取第5个,既j
不过使用的时候要注意长度,不要越界,否则会报java.lang.异常的