当前位置:首页 > 渗透破解 > 正文内容

string的常用 ***

访客3年前 (2022-02-25)渗透破解740

好程序员Java学习路线分享Java-String常用 *** ,String类在java.lang包中,java使用String类创建一个字符串变量,字符串变量属于对象。java把String类声明的final类,不能继承。String类对象创建后不能修改,由0或多个字符组成,包含在一对双引号之间。

好程序员Java培训

二、String类构造 ***

1、public String()

无参构造 *** ,用来创建空字符串的String对象。

String str1 = new String();

String str2 = new String("asdf");

2、public String(String value)

String str2 = new String("asdf");

3、public String(char[] value)

char[] value = {'a','b','c','d'};

String str4 = new String(value);

4、public String(char chars[], int startIndex, int numChars)

char[] value = {'a','b','c','d'};

String str5 = new String(value, 1, 2);

5、public String(byte[] values)

byte[] strb = new byte[]{65,66};

String str6 = new String(strb);

三、String类常用 ***

1、public char charAt(int index)

参数

index -- 字符的索引。

返回值

返回指定索引处的字符。

实例

public class Test {

public static void main(String args[]) {

String s = "www ";

char result = s.charAt(1);

System.out.println(result);

}

}

以上程序执行结果为:

w

2、public boolean equals(Object anObject)

参数

anObject -- 与字符串进行比较的对象。

返回值

如果给定对象与字符串相等,则返回 true;否则返回 false。

实例

public class Test {

public static void main(String args[]) {

String Str1 = new String("run");

String Str2 = Str1;

String Str3 = new String("run");

boolean retVal;

retVal = Str1.equals( Str2 );

System.out.println("返回值 = " + retVal );

retVal = Str1.equals( Str3 );

System.out.println("返回值 = " + retVal );

}

}

以上程序执行结果为:

返回值 = true

返回值 = true

3、public boolean endsWith(String suffix)

endsWith() *** 用于测试字符串是否以指定的后缀结束。

参数

suffix -- 指定的后缀。

返回值

如果参数表示的字符序列是此对象表示的字符序列的后缀,则返回 true;否则返回 false。注意,如果参数是空字符串,或者等于此 String 对象(用 equals(Object) *** 确定),则结果为 true。

实例

public class Test {

public static void main(String args[]) {

String Str = new String("runooo");

boolean retVal;

retVal = Str.endsWith( "run" );

System.out.println("返回值 = " + retVal );

retVal = Str.endsWith( "ooo" );

System.out.println("返回值 = " + retVal );

}

}

以上程序执行结果为:

返回值 = false

返回值 = true

4、public boolean equalsIgnoreCase(String anotherString)

equalsIgnoreCase() *** 用于将字符串与指定的对象比较,不考虑大小写。

参数

anObject -- 与字符串进行比较的对象。

返回值

如果给定对象与字符串相等,则返回 true;否则返回 false。

public class Test {

public static void main(String args[]) {

String Str1 = new String("run");

String Str2 = Str1;

String Str3 = new String("run");

String Str4 = new String("RUN");

boolean retVal;

retVal = Str1.equals( Str2 );

System.out.println("返回值 = " + retVal );

retVal = Str3.equals( Str4);

System.out.println("返回值 = " + retVal );

retVal = Str1.equalsIgnoreCase( Str4 );

System.out.println("返回值 = " + retVal );

}

}

以上程序执行结果为:

返回值 = true

返回值 = false

返回值 = true

5、public String replace(char oldChar,char newChar)

replace() *** 通过用 newChar 字符替换字符串中出现的所有 oldChar 字符,并返回替换后的新字符串。

参数

oldChar -- 原字符。

newChar -- 新字符。

返回值

替换后生成的新字符串。

public class Test {

public static void main(String args[]) {

String Str = new String("hello");

System.out.print("返回值 :" );

System.out.println(Str.replace('o', 'T'));

System.out.print("返回值 :" );

System.out.println(Str.replace('l', 'D'));

}

}

以上程序执行结果为:

返回值 :hellT

返回值 :heDDo

6、public String toLowerCase()

toLowerCase() *** 将字符串转换为小写。

参数

返回值

转换为小写的字符串。

public class Test {

public static void main(String args[]) {

String Str = new String("WWW");

System.out.print("返回值 :" );

System.out.println( Str.toLowerCase() );

}

}

以上程序执行结果为:

返回值 :www

扫描二维码推送至手机访问。

版权声明:本文由黑客技术发布,如需转载请注明出处。

本文链接:https://w-123.com/80996.html

标签: 常用

“string的常用 *** ” 的相关文章

研究人员谈论潜在的没有性能成本的 CPU 安全漏洞缓解措施

一位安全研究员在上周末的自由和开源软件开发者欧洲会议(FOSDEM)上围绕缓解像Spectre和Meltdown这样的处理器漏洞发表演讲,所提出的方式力求让性能成本可以忽略不计。 Cyberus科技公司的Sebastian Eydam在2022年FOSDEM会议上发言,谈到有可能在几乎没有性能成本...

警告:针对 ASUSTOR NAS 设备的 Deadbolt 勒索软件

Hackernews 编译,转载请注明出处: ASUSTOR 网络附属存储(NAS)设备已经成为 Deadbolt 勒索软件的最新受害者,不到一个月前,类似的攻击受害者是QNAP 网络附加存储设备。 为了应对感染,该公司发布了固件更新(ADM 4.0.4.RQO2)来“解决相关...

38 亿条涉及 Clubhouse 和 Facebook 的综合个人信息正在暗网出售

7月24日爆出的Clubhouse漏洞和Facebook用户资料的数据被用来编制成一个38亿条的巨量数据库,暗网售价10万美元,不仅如此,如果买家资金紧张,卖家还愿意分割它。CyberNews研究团队发现了一个9月4日的黑客论坛帖子,该帖子提供了这些数据。发帖人称,这些记录包括姓名、电话号码、Clu...

新型 iLoBleed Rootkit 攻击 HP 企业服务器,并携带数据擦除功能

Hackernews 编译,转载请注明出处: 我们发现一个以前未知的rootkit,它瞄准了惠普企业的Integrated Lights Out(iLO)服务器管理技术,并进行攻击,篡改固件模块并彻底清除受感染系统中的数据。 伊朗网络安全公司Amnpardaz本周记录了这一发现,这是iLO固件中...

太平洋城市银行遭遇勒索软件 AvosLocker 攻击

上个月,美国主要韩裔美国人社区金融服务提供商之一的太平洋城市银行(Pacific City Bank,PCB)遇到了勒索软件攻击事件。 该银行向其客户发送信函,告知他们2021年8月30日发现的一个安全问题,并称这个问题已经解决。 2021年9月7日,PCB完成了对此事件的内部调查,发现勒索软件犯罪...

PrintNightmare 漏洞已引起 CISA 关注 微软表示正积极开展调查

虽然每月的补丁星期二活动微软都会发布一系列安全更新,但依然存在“漏网之鱼”。日前,国内安全公司深信服(Sangfor)发现了名为 PrintNightmare 的零日漏洞,允许黑客在补丁完善的 Windows Print Spooler 设备上获得完整的远程代码执行能力。该漏洞已引起美国网络安全和基...

评论列表

语酌怯朲
2年前 (2022-06-28)

r1.equals( Str2 ); System.out.println("返回值 = " + retVal ); retVal = Str1.equals( Str3 ); System.out.println("返回值 = " +

竹祭花桑
2年前 (2022-06-28)

ng) equalsIgnoreCase() 方法用于将字符串与指定的对象比较,不考虑大小写。 参数 anObject -- 与字符串进行比较的对象。 返回值 如果给定对象与字符串相

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。