Mutable 문자열을 사용하면 새 객체를 생성하지 않고 기존 객체의 내용을 변경할 수 있습니다. 따라서 변경 가능한 문자열은 새 객체를 생성하지 않고도 내용을 변경할 수 있는 문자열입니다. StringBuffer 및 StringBuilder는 Java에서 String의 변경 가능한 버전인 반면, Java String 클래스는 변경할 수 없습니다. 불변 객체는 일단 생성되면 내용을 수정할 수 없는 객체입니다. 불변 객체의 내용이 변경될 때마다 새로운 객체가 생성됩니다.
광고 이 카테고리에서 인기 있는 강좌 JAVA MASTERY - 전문 분야 | 78 코스 시리즈 | 15가지 모의고사이미 다루었듯이 Java에서 가변 문자열은 StringBuffer 및 StringBuilder 클래스를 사용하여 생성할 수 있습니다. 둘 사이의 주요 차이점은 StringBuffer는 스레드로부터 안전한 구현인 반면 StringBuilder는 그렇지 않다는 것입니다. 고성능과 높은 보안이 필요할 때마다 String 클래스의 변경 가능한 버전을 선호해야 합니다. String 풀 때문에 String 클래스에 보안 문제가 있습니다. 따라서 데이터 보안이 필요할 때마다 StringBuffer 및 StringBuilder가 사용됩니다. StringBuffer는 스레드로부터 안전하기 때문에 StringBuffer보다 성능 측면에서 더 우수하지만 스레드 안전이 필요할 때마다 StringBuffer를 사용해야 합니다.
다음은 문자열 빌더 및 문자열 버퍼 클래스의 주요 생성자입니다.
다음은 문자열 버퍼 생성자입니다.
다음은 StringBuffer 클래스 선언입니다.
public final class StringBuffer extends Object implements Serializable,CharacterSequence
다음은 문자열 빌더 생성자입니다.
다음은 StringBuilder 클래스 선언입니다.
public final class StringBuilder extends Object implements Serializable,CharacterSequence
이제 StringBuffer 및 StringBuilder 클래스에서 사용할 수 있는 다양한 메서드와 필드가 무엇인지 살펴보겠습니다. 다음은 일반적으로 사용되는 방법 목록입니다.
문자열 변경 가능 클래스의 메서드는 다음과 같습니다.
Method Name | Description |
length() and capacity() | The length of a mutable string can be calculated using the length() method, and corresponding capacity can be calculated using capacity(). |
append(String str)
append(int number) |
This method is used for adding new text at the end of an existing mutable string. |
insert(int index, String str)
insert(int index, char ch) |
Used for inserting text at a specified position in a given string. In the given syntax index specifies the starting index of at which the string will be inserted. |
reverse() | Used for reversing the order of character in a given string. |
delete(int start, int end) and deleteCharAt(int index) | Used for deleting characters from a mutable string. Start indicates the starting index of the first character to be removed, and the end index indicates an index of one past the last character to be removed. |
replace(int startindex, int endindex, String str) | Used for replacing character sequence between startindex and endindex-1 with the specified string. |
The above-listed methods are commonly used methods of StringBuffer and StringBuilder classes.
Examples of mutable string in java are given below:
Let us see a basic example of a StringBuffer class.
Code:
package com.edubca.mutablestringdemo; public class MutableStringDemo{ public static void main(String args[]){ StringBuffer sBuffer1=new StringBuffer("Welcome"); System.out.println("Original String is ::: " + sBuffer1 + ":: having length " + sBuffer1.length()); //using append method sBuffer1.append(" To Edubca"); System.out.println("Modified String after append is :: " + sBuffer1 + " :: having length " + sBuffer1.length()); //using reverse method sBuffer1.reverse(); System.out.println("Modified String after Reverse is :: " + sBuffer1); } }
The above code shows the creation of java StringBuffer and its different methods. The following output will be produced:
Output:
In this example, we will see how to use StringBuilder in java.
Code:
package com.edubca.mutablestringdemo; public class MutableStringDemo{ public static void main(String args[]){ StringBuilder sBuilder=new StringBuilder("WelcomeToEdubca"); System.out.println("Original String is ::: " + sBuilder + ":: having length " + sBuilder.length()); //using replace method sBuilder.replace(0,9,"This is "); System.out.println("Modified String after replace is :: " + sBuilder + " :: having length " + sBuilder.length()); //using delete method sBuilder.delete(0,7); System.out.println("Modified String after delete is :: " + sBuilder); } }
Output:
In the above example, we have seen how to createStringBuilder class and usage of its methods.
위 내용은 Java의 가변 문자열의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!