search
HomeJavaJavaBaseWhat does the parameter '...' mean in java

What does the parameter '...' mean in java

Feb 01, 2020 pm 08:45 PM
javaparametermean

What does the parameter '...' mean in java

First let’s take a look at the method of binding parameters encapsulated in jdbc, as follows:

/**
* 绑定参数
* @param pstmt
* @param os
*/
 
public static void executebindParam(PreparedStatement pstmt,Object ...os){
 
    int len = os.length;
 
    try {
 
        for (int i = 0; i < len; i++) {
 
            pstmt.setObject(i+1, os[i]);
 
        }
 
    } catch (SQLException e) {
 
        e.printStackTrace();
 
    }
 
}

Recommended learning: java video tutorial

The analysis is as follows:

Object ...osThis writing method started from Java 5. The Java language supports a new writing method for method parameters, called variable Length parameter list. Indicates that the parameters accepted here are 0 to multiple Object type objects, or an Object[].

Note the format of the variable-length parameter list:

1. There must not be a space between the parameter type and the three dots "..." (Object ...os), Object ...OS will not report an error;

2. Variable length parameter list This parameter must be the last parameter in the parameter list, otherwise an error will be reported.

Recommended related articles and tutorials: java introductory tutorial

The above is the detailed content of What does the parameter '...' mean 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

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

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.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor