Home > Java > javaTutorial > body text

How to use return in java?

little bottle
Release: 2020-09-15 15:35:25
Original
24510 people have browsed it

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 ;
    }
Copy after login

Example 2 -- End the program

private void gets(String s ){

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

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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!