Question: You have the following class: class CRectangle { public CRectangle() { System.out.println(CRectangle called); } public CRectangle (int w,int h); { System.out.println(CRectangle(int w, int h) called);
You have the following class:
class CRectangle { public CRectangle() { System.out.println("CRectangle called"); } public CRectangle (int w,int h); { System.out.println("CRectangle(int w, int h) called"); } public int area () { return (width*height); } } Which of these CRectangle methods is activated in the following Main method?
public class TestCRectangle { public static void main(String[] args) { CRectangle rectc = new CRectangle(); } } a) int area () {return (width*height);}
b) CRectangle (int w,int h);
c) CRectangle();
a, b or c?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
