package com.valami; public class Ferrari { private int v = 0; private void alam() { System.out.println(\"alam\"); } public Ferrari() { System
Well, main() is part of the containing class. In fact, main() is exactly like every other method, except that you can start the JVM and tell it to run the main() method of a class from the command line.
main()