How to use return in java?
May 17, 2019 pm 03:29 PMUsage 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 ;}".
#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!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Break or return from Java 8 stream forEach?
