문자열은 문자의 순서이지만 Java에서는 객체로 취급되며 본질적으로 불변입니다. java는 문자열에 대해 작업하는 데 사용할 수 있는 다양한 방법이 있는 java.lang.String 패키지를 제공하지만 Java에서 변경 가능한 문자열을 생성할 수도 있습니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
문자열 리터럴과 새 키워드를 사용하여 정의할 수 있습니다. 그러나 차이점은 리터럴은 문자열 풀에서 사용할 수 없는 경우가 아니면 새 개체를 생성하지 않는다는 것입니다. 하지만 new 키워드는 힙 영역에 문자열을 생성하기 때문에 문자열 상수 풀에 관계없이 항상 새 개체를 생성합니다.
Java에서는 다음과 같은 두 가지 방법을 사용하여 문자열을 정의할 수 있습니다.
리터럴을 사용하여 직접 생성한 문자열은 문자열 상수 풀로 이동합니다. 즉, 요청한 문자열이 문자열 풀에 이미 있는 경우 요청한 문자열이 없으면 기존 문자열이 반환되고 해당 문자열의 새 인스턴스만 생성되어 향후 참조를 위해 풀에 배치됩니다. JVM은 이러한 모든 작업을 수행합니다.
구문:
String s="abc"; String s1 = "abc" ;
위 시나리오에서는 JVM이 요청한 객체를 찾을 수 없기 때문에 문자열 풀에 하나의 객체만 생성되므로 객체를 만들어 풀에 배치하고 s1은 해당 참조만 가리킵니다. 추가 사용을 위해. 따라서 문자열 리터럴은 동일한 인스턴스를 다시 생성하지 않음으로써 메모리를 절약합니다. 따라서 코드 메모리를 효율적으로 만듭니다.
자바에서는 새로운 객체를 생성하기 위해 new 키워드를 사용합니다. new 키워드를 사용할 때마다 새로운 객체가 생성됩니다. 또한, 새로운 키워드를 사용하여 생성된 객체는 힙 메모리 영역에 배치됩니다.
구문:
String s = new Stirng("abc");
위의 예에서 이 개체는 new 키워드를 사용하여 생성했기 때문에 문자열 풀이 아닌 힙 메모리 영역에 배치됩니다.
예:
public class Main { public static void main(String[] args) { String s = "abc"; String s1 = "abc"; String ss = new String("abc"); System.out.println("Output will be :: " + s + " "+ s1 +" "+ ss); } }
출력:
불변이므로 일단 할당되면 값을 변경할 수 없습니다. 따라서 변경 가능한 문자열을 생성하려면 이를 위해 문자열 버퍼를 사용해야 합니다.
기억해야 할 몇 가지 사항:
사용 가능한 다양한 방법은 다음과 같습니다.
또한 문자열 클래스는 하나 이상의 인터페이스, 즉 CharSequence 인터페이스를 구현합니다. StringBuilder 및 String Buffer도 이 인터페이스를 구현합니다. StringBuffer 및 StringBuilder는 Java에서 변경 가능한 문자열을 생성하는 데 사용됩니다.
코드:
public class Demo{ public static void main(String[] args) { StringBuffer sb=new StringBuffer("creating string "); sb.append("executed");//original string will get chnage System.out.println("Result is " +sb);//it will print creating string executed } }
출력 :
코드:
public class Main{ public static void main(String[] args) { StringBuilder sb=new StringBuilder("Creating string"); sb.append(" using string Builder");//original will get change System.out.println("Result is "+sb); } }
출력:
다음은 예시입니다.
코드:
public class Main{ public static void main(String[] args) { String s1="demoforsting"; System.out.println("String is " +s1.substring(2,4)); System.out.println( "with one parameter " +s1.substring(2)); } }
출력:
Code:
public class Demo{ public static void main(String[] args) { String s1="abc"; String s2="abc"; String s3="ABC"; String s4="java"; System.out.println("Result is " +s1.equals(s2));//true System.out.println("Result is " +s1.equals(s3));//false System.out.println("Result is " +s1.equals(s4));//false } }
Output:
Code:
public class Demo{ public static void main(String[] args) { String s1="convert it into uppercase"; String upper=s1.toUpperCase(); System.out.println("result is "+upper); } }
Output:
Code:
public class Demo{ public static void main(String[] args) { String s1="CONVERT IT INTO LOWER CASE"; String s1upper=s1.toLowerCase(); System.out.println("result is "+s1upper); } }
Output:
Code:
public class Main{ public static void main(String[] args) { String name="Demo to check contains method"; System.out.println("Result for conatins mehtod is " +name.contains("check")); System.out.println("Result for conatins mehtod is " +name.contains("method")); System.out.println("Result for conatins mehtod is " +name.contains("move")); } }
Output:
Code:
public class Main{ public static void main(String[] args) { String str1 = "Demo for"; String str2 = "Concat"; String str3 = "Method"; // doing for string one String str4 = str1.concat(str2); System.out.println("Result is "+str4); // for multiple string String str5 = str1.concat(str2).concat(str3); System.out.println("Result is "+str5); } }
Output:
Code:
public class Main { public static void main(String[] args) { String s1 =" Provide space to see use of trim method in java "; System.out.println(s1.length()); System.out.println("without trim output is "+s1); //Not using trim here String tr = s1.trim(); System.out.println(tr.length()); System.out.println("with trim output is "+tr); //using trim here } }
Output:
So java string is an immutable object that provides security in various aspects like URL reading, database username and password, port, and many other things. But if we want to create a mutable string, we should use a string buffer and builder.
위 내용은 자바의 문자열의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!