Method parameters and return values in JAVA classes, and return values of java Parameters

Source: Internet
Author: User

Method parameters and return values in JAVA classes, and return values of java Parameters

The public void method is used to declare a method without any parameters or return values;

The public void method is used to declare a method with no return value;

A method with a return value of a parameter is declared by using the public int method name (int I, int n) (int is the parameter's data type specified, or it can be another data type, for example: string, char, double, int ).

Instance:

// Define the class public class Test {// public void eat () {System. out. println ("I'm eating. ") ;}// Public void cheng (int I, int n) {System. out. println (I * n);} // public int getAge (int a) {return a;} public static void main (String [] args) {Test Myclass = new Test (); // create the object Myclass. eat (); // call the Myclass method. cheng (9,9); // call the method System. out. println (Myclass. getAge (18); // call method }}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.