Home  >  Article  >  Java  >  How to use return in java?

How to use return in java?

little bottle
little bottleOriginal
2019-05-17 15:29:4924521browse

Usage of return in java: 1. Return the value of the specified type by the method, with syntax such as "private String gets(){return s;}"; 2. End the execution of the method, with syntax such as "if ( s = = null ){return ;}".

How to use return in java?

#There are many commands in Java that have special meanings and usage. Today I will take you to learn about the use of the return command in Java.

1: The return statement is used in a method and has two functions:

One is to return the value of the type specified by the method (this value is always determined),

One Is to end the execution of the method (just a return statement).

Two: Example 1 -- Return a String

private String gets(){
        String s = "qw789" ;        
        return s ;
    }

Example 2 -- End the program

private void gets(String s ){

        if ( s == null ){
            return ;
        }
        System.out.println( "haha" ) ;
    }

The above is the detailed content of How to use return 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