What is a uint8?
No Answer is Posted For this Question
Be the First to Post Answer
what is the function of OS
What is native class in java?
What is entitymanager in jpa?
For each of the following program segments,give a big zero analysis for the running time 1.For (i=0;i<m;i++) { // } 2.For (j=0;j<i;j++)
0 Answers St. Pauls University,
What is a bean class?
What is csrf in java?
What is factory pattern in java?
can anyone tell me what kind of questions are asked for core java exam in aptech
What is jboss in java?
how can program polindrome using java
What is meant by rest api 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.