search
HomeJavaJavaBaseHow to determine whether a certain value exists in a string array in java

How to determine whether a certain value exists in a string array in java

Method 1:

You can use the binarySearch(Object[] a, Object key) method in the Arrays class to Finds whether a certain value exists. If a certain value exists, the return value is greater than 0, otherwise the return value is less than 0.

Advantages: Use binary search method, fast and efficient.

Disadvantages: The queried array must be ordered. If it is not ordered, using this method is useless.

Recommended related video tutorials: java teaching video

Example:

String[] array = {"1","2","3","4"};
int index = Arryas.binarySearch(array,"2");
System.out.println("index:" + index); //--- index:1
index = Arryas.binarySearch(array,"0");
System.out.println("index:" + index); //--- index:-1
index = Arryas.binarySearch(array,"5");
System.out.println("index:" + index); //--- index:-5

Method 2:

Use ArraysThe asList() method in the class converts the array into a List() list, and then uses the contains() method to determine whether a certain value exists in the array.

Advantages: Arrays can be out of order and there is no order requirement.

Disadvantages: The query efficiency may be slightly slower, but it should not affect the overall situation.

Example:

String[] array = {"1","2","3","4"};
boolean flag = Arrays.asList(array).contains("2");
System.out.println("flag:" + flag);//--- flag:true
flag = Arrays.asList(array).contains("0");
System.out.println("flag:" + flag);//--- flag:false
flag = Arrays.asList(array).contains("5");
System.out.println("flag:" + flag);//--- flag:false

Recommended related articles and tutorials:Getting started with java

The above is the detailed content of How to determine whether a certain value exists in a string array in java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function