Set custom class object's value with '=' operator in Java

前端 未结 6 2022
滥情空心
滥情空心 2021-01-19 01:31

I have a custom object that has a single value of type int that I wanting to do processing on to keep this value in a set range. My question is this: Given the following cla

6条回答
  •  [愿得一人]
    2021-01-19 02:07

    Foo myObject = new Foo();

    Here, myObject holds the reference. You can't assign primitive value such as 0 to object references.

    Instead, you should do myObject.setBar(10);

提交回复
热议问题