Question: Why this simple program cannot work? Please explain in detail public class Tree{ int Leaves; int Feet; public Tree (int iniLeaves, int iniFeet){ this.Leaves =

Why this simple program cannot work? Please explain in detail

public class Tree{ int Leaves; int Feet; public Tree (int iniLeaves, int iniFeet){ this.Leaves = iniLeaves; this.Feet = iniFeet; } public void grow(){ this.Feet = this.Feet +5; this. Leaves = this.Leaves + 10000; } } public class Main{ public static void main(String [] args){ Tree byTree = new Tree(iniLeaves: 50000, iniFeet: 50); System.out.println(byTree.Feet); System.out.println(byTree.Leaves); byTree.grow(); System.out.println(byTree.Feet); System.out.println(byTree.Leaves); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!