Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 181669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T14:48:16+00:00 2026-05-11T14:48:16+00:00

If you have a class with some plain get/set properties, is there any reason

  • 0

If you have a class with some plain get/set properties, is there any reason to use the getters within the class methods, or should you just use the private member variables? I think there could be more of an argument over setters (validation logic?), but I’m wondering just about getters.

For example (in Java) – is there any reason to use option 2?:

public class Something {     private int messageId;     public int getMessageId() { return this.messageId; }     public void setMessage(int messageId) { this.messageId = messageId; }      public void doSomething()     {         // Option 1:         doSomethingWithMessageId(messageId);          // Option 2:         doSomethingWithMessageId(getMessageId());     } } 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T14:48:17+00:00Added an answer on May 11, 2026 at 2:48 pm

    Java programmers in general tend to be very consistent about using getter methods. I program multiple languages and I’m not that consistent about it 😉

    I’d say as long as you don’t make a getter it’s ok to use the raw variable – for private variables. When you make a getter, you should be using only that. When I make a getter for a private field, my IDE suggests that it replace raw field accesses for me automatically when I introduce a getter. Switching to using a getter is only a few keystrokes away (and without any chance of introducing errors), so I tend to delay it until I need it.

    Of course, if you want to stuff like getter-injection, some types of proxying and subclassing framworks like hibernate, you have to user getters!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class with some abstract methods, but I want to be able
I have an immutable class with some private fields that are set during the
I have a class library with some extension methods written in C# and an
I have a class that has some properties. And I want something that calculates
Suppose I have a class with some attributes. How is it best (in the
Say we have: class Base { virtual void f() {g();}; virtual void g(){//Do some
Suppose I have some per-class data: (AandB.h) class A { public: static Persister* getPersister();
I have a class in system-C with some data members as such: long double
I have a base class vehicle and some children classes like car, motorbike etc..
Suppose I have the following code: class some_class{}; some_class some_function() { return some_class(); }

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.