When is static variable loaded? Is it at compile time or runtime? When exactly a static block is loaded in java?
No Answer is Posted For this Question
Be the First to Post Answer
public class Dog { private int weight; public int getweight(){ return weight; } public void SetWeight(int newWeight){ if (newWeight > 0){ weight = newWeight; } } } public class TestDog { public static void main(String[] args) { Dog d = new Dog(); System.out.println("Dog d's weight is " + d.getWeight()); d.setWeight(42); System.out.println("Dog d's weight is " + d.getWeight()); d.setweight(-42); System.out.println("Dog d's weight is " + d.getWeight()); } } class dog is compiled but there is an error in class TestDog when compiled and the error is with dot notations. I want to kmow why there is error in testdog class when compiled.
How do I run a java program from the command line?
Why struts framework is used in java?
cant we call run() method directly instead of calling indirectly through the start() method ? if we do so then what is the problem ?
Can we extract main method from another class?
What is entitymanager in java?
What is type inference? Is type inference available in older versions like java 7 and before 7 or it is available only in java se 8?
What is lsdou? : java security
there are 67 seats in train . there are only 5 seats in a row and in last row there are only 2 seats. One person can reseve only 5 seat at a time. If person reserving seat , the care is atken that he may get all in row. if seats are not available in row then the arrangement is so that person group get nearby seats. the following class is given public class seat { char name; int seat; boolean isSeatempty } 1.Draw require class digram and object diagram. 2.Write function seatallot(int noofperson) to allocate seat with seat nuber printed for the each name.
What is the difference between Logical Parallelism and Physical Parallelism?
How to implement Hash Map?
How can the static main method use instance variables?