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.

Answers were Sorted based on User's Feedback



public class Dog { private int weight; public int getweight(){ return weight; } public void Set..

Answer / aashish singh

just check the case some where you've used upper case where as
somewhere it is lower case. . . .

i modified your code followin is the correct workin code withoput any errors
====================================================


class Dog {
private int weight;
public int getWeight(){
return weight;
}
public void setWeight(int newWeight){
if (newWeight > 0){
weight = newWeight;
}
}
}




public class TestDog {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
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());
}

}

Is This Answer Correct ?    7 Yes 0 No

public class Dog { private int weight; public int getweight(){ return weight; } public void Set..

Answer / madan

This piece of code will not generate an error surely even
with the dot notations. if you got errors post the
description of that error here

Is This Answer Correct ?    2 Yes 1 No

public class Dog { private int weight; public int getweight(){ return weight; } public void Set..

Answer / ashu chhabra

Thanks Aashish singh. You r right.My problem is solved
thankyou very much.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Java Related AllOther Interview Questions

Is lambda functional programming?

0 Answers  


can anyone tell me what kind of questions are asked for core java exam in aptech

0 Answers  


What is a java singleton?

0 Answers  


What is a java proxy?

0 Answers  


Why serialization is used in java?

0 Answers  






Does ms edge support java?

0 Answers  


What is java language expression?

0 Answers  


Explain about the Physical Data Model?

1 Answers   HCL,


What are the benefits of a jar file?

0 Answers  


How do you check if java is installed on windows command prompt?

0 Answers  


What is difference between map and flatmap in java 8?

0 Answers  


What is the means of java?

0 Answers  


Categories