Java :Setter Getter and constructor

前端 未结 11 1282
陌清茗
陌清茗 2020-12-25 12:31

I\'m a bit confused about the use of getter/setters and constructors (see the below code for an example)

    public class ExampleClass {

        private in         


        
相关标签:
11条回答
  • 2020-12-25 12:50

    It's easier and safer to initialize your object variables via your constructor to avoid nullpointers.

    If you instantiate your object without initializing your variables first and you do a get operation on one of your null variables, you might get a nullpointer exception at runtime because you forgot to manually set its value.

    On the flipside of that, if you always initialize your object variables in your default constructor, you have a seriously reduced risk of getting nullpointer exceptions during runtime because none of your variables can be null unless you specifically set them via a setter (which is not recommended).

    0 讨论(0)
  • 2020-12-25 12:56

    Constructor with arguments makes you get the object fully constructed. If you want to use default one, you will have to make sure the fields are set using setters. During set of some property, assume the exception is thrown, now you have an object which is not usable. In several cases, setter wouldn't be exposed but getters. In those cases, having constructor with arguments or a named constructor is the right option. In a nutshell, getters and setters do have their own importance rather than initializing the object.

    Why use getters and setters?

    0 讨论(0)
  • 2020-12-25 13:01

    this is purely upto your coding style. But IMO, I would use parametrized constructor:

    1. to initialize those values which should not be changed. (like username parameter for a person object)

    2. to initialize those values, without setting which, the object will be in invalid state.

    Say, you are sending login parameters to a method. You can use in these to ways

    Login obj = new Login();
    obj.setUsername("user");
    obj.setPassword("pw")// what if someone commented this out, or you forget to call it
    
    
    and otherway,
    Login obj = new Login("user", "pw");
    

    while you can send Login object just after setting username in 1st case, it would be invalid at recieving end. but the second method is less prone to bugs, bcz it becomes necessary to pass all the required parameters.

    0 讨论(0)
  • 2020-12-25 13:05

    Sometimes, when creating a new object of a class, some values HAVE TO be provided. For an example, when connecting to database and creating Connection class object you have to provide a connection string, so that it knows what are you connecting to. Creating new connection without specyfing target database would be pretty useless, right?

    Also, take a look at this

    Foo foo=new Foo(1,2,3,4,5,6,7);
    

    and this

    Foo foo=new Foo();
    foo.setP1(1);
    foo.setP2(2);
    foo.setP3(3);
    foo.setP4(4);
    foo.setP5(5);
    foo.setP6(6);
    foo.setP7(7);
    

    First one looks better, right?

    0 讨论(0)
  • 2020-12-25 13:07

    First, both methods: Constructor and Setter are safe ways to change object's attributes. Are expected from Class author to expose or not safe ways to modify an instance.

    1. The default constructor is always provided if you have not written one:

      // Example of a Class with a Default Constructor 
      public class GetSet {
      
          private String value;
      
          public String getValue() {
              return value;
          }
          public void setValue(String value) {
              this.value = value;
          }
      
      
          public static void main(String[] args) {
              // Theres a implicit Default Constructor here
              // Its ok to do that
              // GetSet obj = new GetSet();
              GetSet obj = new GetSet();
          }
      
      }
      
      
      // Example of a Class without a Default Constructor 
      public class GetSet2 {
      
          public GetSet2(String value) {
              this.value = value;
          }
      
          private String value;
      
          public String getValue() {
              return value;
          }
          public void setValue(String value) {
              this.value = value;
          }
      
          public static void main(String[] args) {
              // GetSet2 obj = new GetSet2(); // compile time error
              // Default constructor is not provided, since u wrote one
          }
      
      }
      


    2. About which is better: Using a constructor or via setter, it depends on what u want. If you will only modify an attribute of a existing object, u may use the setter, or for a completely filled object you may prefer the constructor instead.

        // Example of modifing an obj via Setter and Constructor
        public class GetSet3 {
    
            public GetSet3(String value1, String value2, String value3, String value4) {
                this.value1 = value1;
                this.value2 = value2;
                this.value3 = value3;
                this.value4 = value4;
            }
    
            private String value1;
            private String value2;
            private String value3;
            private String value4;
    
    
            // ... Getters and Setters
    
    
    
            public static void main(String[] args) {
    
                // Its easier to this
                GetSet3 obj;
    
                obj= new GetSet3("j", "a", "v", "a");
    
                // instead that
                // its also easy to forget or do something wrong
                // when u have a lot of attributes to set
                obj.setValue1("j");
                obj.setValue2("a");
                obj.setValue3("v");
                obj.setValue4("a");
    
            }
        }
    
    0 讨论(0)
  • 2020-12-25 13:07

    To answer this question, I say by writing getters/setters, we create a provision to add any validation method in the future, currently, there is no validation, but if anything goes wrong in the future we just add validation logic in the setter.

    we can also write the logic/validation in constructors but it's not a good practice. The constructor should be used only to initialize your object's state/fields. You should delegate the responsibility of other things to other methods. Note that a constructor is called only once i.e, whenever you create a new object With a sufficiently large input, you can cause an exception in your constructor. This is one of several reasons why you should not use a constructor to contain "business logic".

    0 讨论(0)
提交回复
热议问题