1 / 4

Java-Methods

The method means a block of code that executes when we call.It describes the behaviour or logic of an object.

quipoin
Download Presentation

Java-Methods

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java-Methods What is Methods in JAVA?

  2. Overview The method means a block of code that executes when we call. It describes the behaviour or logic of an object. It is a Java convention that the method name should be in camelCase format (i.e. method_Name ).  It enhances the readability and reusability of a program. The most common method used in Java is the main() method where the compiler starts compiling.

  3. Program public class Main { public static void main(String[] args) { String name = "Quipo House"; message(name); } static void message(String name) { System.out.println(name); } }

  4. Types

More Related