Java-setCharAt()方法

2021/7/26 9:05:40

本文主要是介绍Java-setCharAt()方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

setCharAt ()方法 在java.lang包中可用。 setCharAt () method is used to sets the given character at the given position and pos argument must be equal to or greater than 0 and less than the length. setCharAt ()方法 用于在给定位置设置给定字符,pos参数必须等于或大于0且小于长度

setCharAt() 该方法是StringBuffer中的方法,主要作用是将字符串中指定的位置的字符替换成目标字符,setCharAt(int index,char ch)index就是取代的位置 索引从0开始,ch是你要替换为的字符串。



这篇关于Java-setCharAt()方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程