博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java StringBuilder deleteCharAt()方法与示例
阅读量:2526 次
发布时间:2019-05-11

本文共 1840 字,大约阅读时间需要 6 分钟。

StringBuilder类deleteCharAt()方法 (StringBuilder Class deleteCharAt() method)

  • deleteCharAt() method is available in java.lang package.

    deleteCharAt()方法在java.lang包中可用。

  • deleteCharAt() method is used to delete the character at the given index.

    deleteCharAt()方法用于删除给定索引处的字符。

  • deleteCharAt() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    deleteCharAt()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • deleteCharAt() method may throw an exception at the time of assigning index.

    deleteCharAt()方法在分配索引时可能会引发异常。

    StringIndexOutOfBoundsException - This exception may throw when the given argument value is less than 0 or larger than or similar to length().

    StringIndexOutOfBoundsException-当给定的参数值小于0或大于或类似于length()时,可能引发此异常。

Syntax:

句法:

public StringBuilder deleteCharAt(int indices);

Parameter(s):

参数:

  • int indices – represents the index of deleting character.

    int index –表示删除字符的索引。

Return value:

返回值:

The return type of this method is StringBuilder, it returns this StringBuilder object.

该方法的返回类型为StringBuilder ,它返回此StringBuilder对象。

Example:

例:

// Java program to demonstrate the example // of StringBuilder deleteCharAt(int indices)// method of StringBuilder public class DeleteCharAt {
public static void main(String[] args) {
// Creating an StringBuilder object StringBuilder st_b = new StringBuilder("Java World"); // Display before deletion System.out.println("st_b = " + st_b); // By using deleteCharAt(4) method is to delete the character // i.e. whitespace at the given index 4 st_b = st_b.deleteCharAt(4); // Display st_b after deletion System.out.println("st_b.deleteCharAt(4) = " + st_b); }}

Output

输出量

st_b = Java Worldst_b.deleteCharAt(4) = JavaWorld

翻译自:

转载地址:http://iwvzd.baihongyu.com/

你可能感兴趣的文章
IOS内存管理
查看>>
我需要一个足够大的桌子
查看>>
middle
查看>>
[Bzoj1009][HNOI2008]GT考试(动态规划)
查看>>
Blob(二进制)、byte[]、long、date之间的类型转换
查看>>
linux awk命令详解
查看>>
OO第一次总结博客
查看>>
day7
查看>>
iphone移动端踩坑
查看>>
vs无法加载项目
查看>>
Beanutils基本用法
查看>>
玉伯的一道课后题题解(关于 IEEE 754 双精度浮点型精度损失)
查看>>
《BI那点儿事》数据流转换——百分比抽样、行抽样
查看>>
哈希(1) hash的基本知识回顾
查看>>
Leetcode 6——ZigZag Conversion
查看>>
dockerfile_nginx+PHP+mongo数据库_完美搭建
查看>>
Http协议的学习
查看>>
【转】轻松记住大端小端的含义(附对大端和小端的解释)
查看>>
设计模式那点事读书笔记(3)----建造者模式
查看>>
交换机划分Vlan配置
查看>>