Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started