Posts by Rodrigo Cordula • 11 points
1 post
-
1
votes2
answers335
viewsQ: Inheritance and manipulation of a superclass’s methods
Inheritance is said to inherit all the methods of a super class. But in doing class Soma{ private double total; public void setSoma(double s1, double s2) { total = s1+s2; } public double getSoma() {…