நன்றி அக்கா
Best teacher
Onka vedios la romba useful la irruku mam😊
Thank you akka
best video
Akka java supported copy constructor or not
i think you are teaching from Java complete reference book..? am i right? anyway ...!, good job, i appreciate ✌👍
"from the static block" msg is in the static constrictor right, Mam?
Public static void main() static method ah akka? If yes then how can we call non static methods using object?
You said that static method are usually invoking just before creating 1st obj but end of the video you used static method to print boxcount how does it invoking after created all of the objs.@Logic First Tamil
Mam I have a problem in somewhere, please go through my simple code . class Box{ private int length, breadth, height; Box(int l,int b,int h){ this.length=l; this.breadth=b; this.height=h; } int Area(){ return length*breadth*height; } } class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); Box ob = new Box(11,2,2); System.out.println("Area of perimeter.."); ob.Area(); } } // The output is Hello, World! Area of perimeter.. The int return type Area() method wont return their value mam.
Why we are using static in main method akka?
Static block will be executed before main method,am i right?
@SuryaK24