What is loose coupling in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are microservices in java?
What is jar file in java?
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.
What if the main method is declared as private?
What is the use of flatmap?
Why doesn't lsdou work under windows nt? : java security
Which is best framework in java?
I have deployed a .war file in my application server comprising of struts and hibernate.If i want to change the "dialect" property of hibernate cfg file how can i change(I have only .war file)... Thanks in advance
what are the types of constructer explain with example
What is the first argument of the string array in main method?
How to implement Thread
why i can not access private variable in other class?