Computer Science, asked by Anonymous, 2 months ago

Write a Java statement to create an object named 'jfs' of a class 'Computer' that invokes a parameterized constructor that accepts two integer type values.
[URGENT, SO PLEASE DON'T WASTE MY TIME WITH NONSENSE ANSWERS SIMPLY FOR POINTS!]

Answers

Answered by shubhamrnchauhan2
1

Explanation:

please follow me ❤️

please follow me ❤️

During object creation the parameters we pass, determine which constructor should get invoked for object initialization. For example, when we create the object like this MyClass obj = new MyClass(123, "Hi"); then the new keyword invokes the Parameterized constructor with int and string parameters (MyClass(int, String)) after object creation.❤️❤️❤️❤️❤️❤️❤️❤️

Answered by mkaur14
0

Answer: Java is one of the many programming languages which follow the Object-Oriented Approach. That means while programming in Java we have all the powerful features of Data Abstraction, Polymorphism, Inheritance, etc. The core of all the OOP features is the implementation of Classes and Objects and their interaction with one another. In this article, we will particularly look at how to initialize an object using parameterized constructors in Java. Please note that a basic understanding of classes and objects is required before you continue to constructors.

Explanation: hope this helps!!! : )

Similar questions