Java static method example

  1. /*
  2. Java static method example
  3. This Java Example shows how to declare and use static methods inside
  4. a java class.
  5. */
  6.  
  7. public class StaticMethodExample {
  8.  
  9. public static void main(String[] args) {
  10.  
  11. int result = MathUtility.add(1, 2);
  12. System.out.println("(1+2) is : " + result);
  13. }
  14.  
  15. }
  16.  
  17. class MathUtility{
  18.  
  19. /*
  20. * To declare static method use static keyword.
  21. * Static methods are class level methods and can not access any instance
  22. * member directly. However, it can access members of a particular object
  23. * using its reference.
  24. *
  25. * Static methods are generally written as a utility method or it performs
  26. * task for all objects of the class.
  27. *
  28. */
  29.  
  30. public static int add(int first, int second)
  31. {
  32. return first + second;
  33. }
  34.  
  35. }

Visit Java Example Forums to request Java examples or ask Java questions!
OR
Try out our new Java Search Engine




Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Nice Example

Nice Example...thank you very much

Good one

thanks for keeping the site

This site is super.. gr8 examples

thanx e lot

Good Site

This is really good site with nice examples.Thanks.

very usefulllll site..

examples r superb....
easy to understand...........
thank u........

treamendus my friend

really its a good plateform for studying
because u can learn only with the help of examples and u provide examples
best yaar!!!!!!
BOL

GOOD

EXAMPLES ARE VERY EASY, IT SHOULD BE LITTLE HARD WITH ANSWERS SO THAT WE CAN IMPROVE OUR PROGRAMMING KNOWLEDGE.


Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!