Rumah> Java> javaTutorial> teks badan

Soalan Temuduga Rentetan Java

WBOY
Lepaskan: 2024-08-30 16:29:16
asal
731 orang telah melayarinya

Core Java에서 String은 기본적인 Java 프로그래밍의 시작을 이해하는 데 중요한 클래스 중 하나입니다. 문자열 클래스는 잘 정의되어 있으며 java.lang 패키지에 포함되어 있습니다. 불변 클래스이므로 개발자가 매번 인스턴스를 생성하지 않고 바로 사용할 수 있습니다.

무료 소프트웨어 개발 과정 시작

웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등

Java String 관련 일자리를 찾고 있다면 2023년 Java String 면접 질문을 준비해야 합니다. 모든 인터뷰는 실제로 다양한 직업 프로필에 따라 다릅니다. 여기서는 귀하의 인터뷰 성공에 도움이 될 중요한 Java 문자열 인터뷰 질문과 답변을 준비했습니다.

이 기사에서는 가장 중요하고 자주 묻는 Java 문자열 인터뷰 질문 10가지를 제시하겠습니다. 이 질문은 다음과 같이 두 부분으로 나누어집니다.

1부 – Java 문자열 인터뷰 질문(기본)

첫 번째 부분에서는 기본적인 Java 문자열 인터뷰 질문과 답변을 다룹니다.

Q1. 개발자가 이를 어떻게 사용할 수 있는지 Java 프로그래밍 언어의 String 클래스에 대해 자세히 설명하십시오. Java 프로그래밍 언어의 문자열을 데이터 유형으로 고려해야 할까요? 그렇다면 구체적으로 설명해 주시겠습니까?

정답:

문자열은 Java의 핵심 클래스 중 하나이며 기본적으로 java.lang 패키지에 들어 있습니다. Java int 또는 long의 다른 변수와 같은 기본 데이터 유형으로 전혀 정의되지 않습니다. 주로 단일 표현으로 많은 문자열을 보유합니다. String 객체는 Java 프로그래밍에서 처음부터 끝까지 거의 모든 코딩을 사용하기 때문에 매우 널리 사용되며 Java 코어 패키지에 정의된 불변의 최종 클래스이며 JVM은 일반적으로 생성된 모든 String 객체를 저장하기 위해 하나의 String 풀을 생성합니다. >

Q2. Java 프로그래밍 언어에는 String 객체를 생성하는 데 사용할 수 있는 다양한 접근 방식이 있습니다. 이를 생성하는 데 사용할 수 있는 접근 방식을 자세히 설명하고 코드 조각과 관련된 몇 가지 예를 제시하시겠습니까?

정답:

개발자가 Java 프로그래밍 언어로 문자열 객체를 생성할 수 있는 방법에는 여러 가지가 있습니다. 접근 방식은 다음과 같습니다.

  • New 연산자 사용: 다른 객체 생성과 마찬가지로 간단한 new 연산자를 사용하여 하나의 문자열 객체를 생성할 수 있지만 JVM의 문자열 풀에 저장되지는 않습니다.
  • "연산자 사용:" 연산자를 사용하여 문자열 객체를 생성하고 그 안에 해당 값을 제공할 수 있습니다. 동일한 유틸리티인 JVM은 해당 값을 문자열 풀에 저장하고 그에 따라 반환한다고 간주합니다.
  • 기타 사용:바이트 배열, 문자 배열, StringBuilder 또는 StringBuffer에서 문자열 개체를 생성할 수 있습니다.
  • 으아악
다음 Java 문자열 인터뷰 질문으로 넘어가겠습니다

Q3. one 키워드는 'Palindrome'이라는 Java 언어에서 매우 많이 사용됩니다. Java 프로그래밍에서 하나의 문자열 객체 참조가 'Palindrome'으로 호출될 수 있는 경우 설명해주세요. 이를 확인하기 위한 Java 메소드를 작성할 수 있습니까? 그렇다면 코드 조각과 함께 몇 가지 예를 들어주세요.

정답:

하나의 String 객체는 해당 특정 String 클래스의 값이 반전될 때 동일할 수 있는 경우 'Palindrome'으로 호출할 수 있습니다. 예를 들어, 'cbc'와 같이 말할 수 있습니다. 여기서 이 문자열 값은 Palindrome으로 간주될 수 있습니다. 이 값의 반대는 항상 동일한 결과를 제공하기 때문입니다.

일반적으로 String에서 동일한 내용을 검증하는 데 사용할 수 있는 두 가지 인기 있는 접근 방식은 면접관의 기대에 따라 동일하게 사용할 수 있습니다.

    StringBuilder strBuilder = new StringBuilder(“cbc”);
strBuilder.reverse();

    문자열 str1 = “abc”;
Int lenStr1 = str1.length();

For(int j=0; j If(str1.charAt(j) != str1.charAt(lenStr1 – j-1)){
false를 반환합니다.
}
}

참을 반환합니다.

Q4. 일부 asci 문자를 제거하거나 Java 프로그래밍 언어에 정의된 String 객체 중 하나에서 문자를 제공하거나 제공하려고 한다고 가정해 보겠습니다. Java 프로그래밍에서 하나의 단일 메소드를 사용하여 이를 수행하는 방법. 코드 조각으로 설명해주세요.

정답:

These are the basic Java String Interview Questions asked in an interview. One of the key methods we normally used to replace the entire string is the replace All method. It will help the developer for replacing the entire content of the String with another String content as per the requirement of the project. But one of the key characteristics of a replacement. All method is it always accepting String as it’s one of the specific arguments, so it will very much require for using one of the Character classes for creating the string and use the same properly for replacing it with another expected String or an empty string. Please find below the code snippet with an example.

public String replaceString(String str1, char c1){ Return str1.replaceAll(Character.toString(c1), "……"); }
Salin selepas log masuk

Q5. One of the very common requirements in a programming language is to make some property in upper case or lower case. Is there any specific methodology defined for String object in a Java programming language to present that property value in upper case or lower case? Please explain with a code snippet?

Answer:

It will be one of the very common functionalities required for the developer in any case for the String object variable value. A developer can easily be used to UpperCase and LowerCase methods on the specific String class to getfor getting the entire string value in total upper case or total lower case. This method has one more optional argument, which is a locale object. So someone can able to use some specific locale rules for making the string value in upper case or lower case.

String s = "abc"; String s1 = "ABC" System.out.println("Upper case of S: "+s.toUpperCase()+", lower case of S1: "+s1.toLowerCase());
Salin selepas log masuk

Part 2 – Java String Interview Questions (Advanced)

Let us now have a look at the advanced Java String Interview Questions.

Q6. Is there any method in String call subsequence? If yes, please explain the same in details with a proper definition?

Answer:

CharSequence interface is a very much useful interface in java introduce to Java 1.4. The string class normally implements that specific interface. So the implementation of the subsequence method inside the String class can be possible due to the above reason. Actually, it invokes one of the frequent methods of String called the substring method internally.

Q7. One another very common requirement for the developer in Java programming is to compare two objects as per development requirements. Is it possible to compare two String object in the Java programming language? If yes, please explain how it can be done?

Answer:

Comparing between two String values can be done by below approaches:

  • Using a comparable interface: Java String normally implements a comparable interface, so compare To method can be utilized easily to compare two string values.
  • By using equals or equalsIgnoreCase method: String value can be compared easily by using direct method equal or eualsIgnoreCase.

Let us move to the next Java String Interview Questions

Q8. Is it possible to convert one of the String objects into a char data type or one char data type covert to a String object? If yes, please explain how it can be achievable?

Answer:

charAt method can be used to get an individual character by providing an index, and the CharAraay method converts one string value to a character array.

String str = "abc"; Char c = str.charAt(0); String str1 = new String("This is a test String"); char[] carray= str1.toCharArray(); for(char c1: carray){ System.out.print(c1); }
Salin selepas log masuk

Q9. One of the very popular methodologies in the Java programming language called the switch case. Is it possible to use switch case methodology in case of using String object for java programming? If yes, please explain how it can be possible?

Answers:

This is the most asked Java String Interview Question in an interview. Switch case is one of the common functionality for avoiding writing a lot of if-else logic in the entire code. It always helps in maintaining code quality properly. Earlier switch case reference only is able to do for the integer or long values only. But from the Java 7 version onwards, java allows using switch case on String object as well. So as of now, the String value can be used for switch case utility.

Q10: Suppose planning to perform every kind of permutation of String class in java programming. Please give some details programming of how we can able to do this by using String object properly?

Answer:
We can use this by using the below code:

Set perm = new HashSet(); char initial = str.charAt(0); String rem = str.substring(1); Set words = permutationFinder(rem); for (String strNew : words) { for (int i = 0;i<=strNew.length();i++){ perm.add(charInsert(strNew, initial, i)); } } return perm;
Salin selepas log masuk

Atas ialah kandungan terperinci Soalan Temuduga Rentetan Java. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Label berkaitan:
sumber:php
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan
Tentang kita Penafian Sitemap
Laman web PHP Cina:Latihan PHP dalam talian kebajikan awam,Bantu pelajar PHP berkembang dengan cepat!