From the course: Java 8+ Essential Training: Objects and APIs

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Declare and use custom classes

Declare and use custom classes - Java Tutorial

From the course: Java 8+ Essential Training: Objects and APIs

Start my 1-month free trial

Declare and use custom classes

- [Instructor] I've previously described how to organize code in custom methods. You can further organize your code by moving reusable methods into their own classes. Consider Java's math class. I want to look at the documentation for that class, and to get there, I'll simply type the word math and then with the cursor inside that class name, I'll press shift + F1. If you have your documentation configured for the Java Runtime, you'll get to this webpage. I'll go to the list of methods, and I'll see all these static methods that return various types and take various arguments. Here's how you can create your own classes that are essentially method libraries. I'll get rid of that bit of code that I just created, and then I'll go to my project window. I'll go to my package under the source directory, I'll right click it and choose new, Java class, and I'll create a new class named input helper. Under the kind list, you'll see that you can create classes, interfaces, enums, and other…

Contents