Tagged Questions

A getter is public mutator method, used in object-oriented programming, which returns the value associated with a private member of a class.

learn more… | top users | synonyms (1)

81
votes
19answers
10k views

Why use getters and setters?

What's the advantage of using getters and setters - that only get and set - instead of simply using public fields for those variables? If getters and setters are ever doing more than just the simple ...
53
votes
18answers
11k views

Java: Are Getters and Setters evil?

I'm currently working on a simple game in Java with several different modes. I've extended a main Game class to put the main logic within the other classes. Despite this, the main game class is still ...
33
votes
14answers
5k views

Simple Getter/Setter comments

What convention do you use to comment getters and setters? This is something I've wondered for quite some time, for instance: /** * (1a) what do you put here? * @param salary (1b) what do you put ...
25
votes
14answers
2k views

Allen Holub wrote “You should never use get/set functions”, is he correct?

Allen Holub wrote the following, You can't have a program without some coupling. Nonetheless, you can minimize coupling considerably by slavishly following OO (object-oriented) precepts (the most ...
25
votes
7answers
55k views

How to generate getters and setters in Visual Studio?

By "generate", I mean auto-generation of the code necessary for a particuliar selected (set of) variable(s). But any more explicit explication or comment on good practice is welcome.
21
votes
6answers
7k views

Why JSF calls getters multiple times

Let's say I specify an outputText component like this: <h:outputText value="#{ManagedBean.someProperty}"/> If I print a log message when the getter for someProperty is called and load the ...
20
votes
22answers
1k views

Java method naming conventions: Too many getters

Why do Java method names use the "get" prefix so extensively? At least in my Java programs there are a lot of methods with names starting with the word "get". The percentage of get-methods is ...
19
votes
14answers
888 views

Is object creation in getters bad practice?

Let's have an object created in a getter like this : public class Class1 { public string Id { get; set; } public string Oz { get; set; } public string Poznamka { get; set; } ...
18
votes
6answers
6k views

Rhino Mocks AssertWasCalled (multiple times) on property getter using AAA

I have a mocked object that is passed as a constructor argument to another object. How can I test that a mocked object's property has been called? This is code I am using currently: ...
16
votes
12answers
2k views

Public Data members vs Getters, Setters

I am currently working in Qt and so C++. I am having classes that has private data members and public member functions. I have public getters and setters for the data members available in the class. ...
16
votes
8answers
1k views

TDD, DDD and Encapsulation

After several years of following the bad practice handed down from 'architects' at my place of work and thinking that there must be a better way, I've recently been reading up around TDD and DDD and I ...
13
votes
2answers
6k views

Best way of invoking getter by reflection

I need to get the value of a field with a specific annotation, So with reflection I am able to get this Field Object. The problem is that this field will be always private though I know in advance it ...
13
votes
7answers
33k views

Getters/setters in Java

I'm new to Java, but have some OOP experience with ActionScript 3, so I'm trying to migrate relying on stuff I know. In ActionScript 3 you can create getters and setters using the get and set ...
12
votes
3answers
431 views

What Getters and Setters should and shouldn't do [closed]

Possible Duplicate: Convention question: When do you use a Getter/Setter function rather than using a Property I've run into a lot of differing opinions on Getters and Setters lately, so I ...
11
votes
12answers
537 views

Why stick to get-set and not car.speed() and car.speed(55) respectively?

Apart from unambiguous clarity, why should we stick to: car.getSpeed() and car.setSpeed(55) when this could be used as well : car.speed() and car.speed(55) I know that get() and set() are useful to ...
11
votes
3answers
2k views

Javascript getters/setters in IE?

For whatever reason, Javascript getters/setters for custom objects seem to work with any browser but IE. Does IE have any other non-standard mechanism for this? (As with many other features) If not, ...
10
votes
3answers
142 views

Wondering whether I should just bail on using properties in python

I have been trying to use properties instead of specific setters and getters in my app. They seem more pythonic and generally make my code more readable. More readable except for one issue: Typos. ...
10
votes
4answers
2k views

JavaScript getter for all properties

Long story short: I'm in a situation where I'd like a PHP-style getter, but in JavaScript. My JavaScript is running in Firefox only, so Mozilla specific JS is OK by me. The only way I can find to ...
10
votes
11answers
2k views

How to trace a NullPointerException in a chain of getters

If I get a NullPointerException in a call like this: someObject.getSomething().getSomethingElse(). getAnotherThing().getYetAnotherObject().getValue(); I get a rather useless exception text ...
8
votes
10answers
599 views

Java: how to handle a LOT of fields and their encapsulation cleanly?

Let's say I am tasked with coding some kind of an RPG. This means that, for example, I'll want to track a Character GameCharacter and stats thereof, like intelligence, damage bonuses or hitpoints. ...
7
votes
2answers
176 views

Strange “getter” behaviour in IE9 when accessing property of `Number.prototype` from a number literal

Object.defineProperty(Number.prototype, 'foo', { get: function () { return this } }) console.log(10.5.foo) console.log(10..foo) // 0 in IE9! console.log(10.0.foo) // 0 in IE9! ...
6
votes
3answers
609 views

Monitor All JavaScript Object Properties (magic getters and setters)

I apologize for asking this question again, but there really aren't sufficient answers to this question on StackOverflow. This is almost a duplicate of: Is there a way to monitor changes to an ...
6
votes
1answer
1k views

Why is the getter called so many times by the rendered attribute?

Related to a previous example, i tried to monitor my get/set methods on the server (when they are called, and how often). So, my actual been look such : @ManagedBean(name="selector") @RequestScoped ...
6
votes
7answers
257 views

“Getters should not include large amounts of logic.” True or false?

I tend to make an implicit assumption that getters are little more than an access control wrapper around an otherwise fairly lightweight set of instructions to return a value (or set of values). As a ...
6
votes
2answers
3k views

Magic __get getter for static properties in PHP

public static function __get($value) does not work, and even if it did, it so happens that I already need the magic __get getter for instance properties in the same class. This probably is a yes or ...
6
votes
10answers
737 views

Which is more appropriate: getters and setters or functions?

Is it ever appropriate to abandon the "getMyValue()" and "setMyValue()" pattern of getters and setters if alternative function names make the API more obvious? For example, imagine I have this class ...
5
votes
5answers
172 views

Universal function pointer

There is some class which have methods like: int getSomething1(); std::string getSomething2(); someClass getSomething3(); There is structure which describes fields of this class like: {"name of ...
5
votes
6answers
286 views

Is it a good idea to always return references for member variable getters?

If I have a class that has many int, float, and enum member variables, is it considered efficient and/or good practice to return them as references rather than copies, and return constant references ...
5
votes
6answers
12k views

getter and setter for class in class c#

Assuming we have a class InnerClass with attributes and getter/setter. We also have a class OuterClass containing the InnerClass. e.g. class InnerClass { private int m_a; private int m_b; ...
4
votes
4answers
184 views

Is “Value Validation in Getter/Setter” good style?

my Getter/Setter methods check the value, before they set/return it. When the value is invalid, they throw an exception (BadArgumentException or IllegalStateException). This is needed since we ...
4
votes
1answer
97 views

Does ES5 have a counterpart to __lookupGetter__?

I know Object.defineProperty is lots of fun and a great replacement for __defineGetter__ and __defineSetter__ nonstandard APIs, but is there a similar counterpart for __lookupGetter__? Or some way of ...
4
votes
11answers
562 views

The use of getters and setters for different programming languages [closed]

So I know there are a lot of questions on getters and setters in general, but I couldn't find something exactly like my question. I was wondering if people change the use of get/set depending on ...
4
votes
8answers
1k views

Conventions for accessor methods (getters and setters) in C++

Several questions about accessor methods in C++ have been asked on SO, but none was able satisfy my curiosity on the issue. I try to avoid accessors whenever possible, because, like Stroustrup and ...
4
votes
3answers
1k views

Javascript defineGetter

var a = {}; a.__defineGetter__('test',function() {return 5;}); var i ="test"; Is there any other way I can execute the getter other than a[i]; (while using var i to do it) EDIT: I was asking ...
4
votes
3answers
532 views

In Objective-C on iOS, what is the (style) difference between “self.foo” and “foo” when using synthesized getters?

I have searched many questions on ObjC accessors and synthesized accessors to no avail. This question is more of a "help me settle an issue" question; I don't expect one answer, but I'm rather ...
4
votes
3answers
692 views

How can I define a default getter and setter using ECMAScript 5?

How can I specify a default getter for a prototype? With default getter I mean a function that is called if obj.undefinedProperty123 is called. I tried Object.prototype.get = function(property) {..} ...
4
votes
5answers
240 views

What are the benefits of using properties internally?

Encapsulation is obviously helpful and essential when accessing members from outside the class, but when referring to class variables internally, is it better to call their private members, or use ...
4
votes
4answers
213 views

What does it means? [c#]

If we define a property as public property and in this property we have a protected getter. what does it means? if property is public, what does defining a protected getter for that, means? please see ...
4
votes
5answers
3k views

tutorial on getters and setters?

im from the php world. are there good tutorials explaining what getters and setters are and could give you some examples?
4
votes
8answers
801 views

Data verifications in Getter/Setter or elsewhere?

I'm wondering if it's a good idea to make verifications in getters and setters or elsewhere in the code. This might surprise you be when it comes to optimizations and speed-ing up the code, I think ...
3
votes
5answers
78 views

Trying to learn / understand Ruby setter and getter methods

I'm just learning to program and have decided to try Ruby. I'm sure this is a stupid question, but the instructor is talking about setter and getter methods, and I'm confused. Here is the example: ...
3
votes
1answer
67 views

use class getters or class properties? (PHP)

What's considered best practice writing OOP classes when it comes to using a property internally. Consider the following class; <?php Class Foo { /** * @var null|string */ ...
3
votes
2answers
94 views

Should I use “get”-prefix in my method name?

I have this abstract class that is used as data repository. public abstract class AbstractDataSource { public abstract DataRow getDataRow(Key key); //or just dataRow(Key key)??? } public class ...
3
votes
1answer
68 views

Unexpected behaviour in Firefox when getter returns a function

Object.defineProperty(Number.prototype, 'foo', { get: function () { var me = this return function () { return me.valueOf() } } }) console.log(5..foo()) This logs 5 in Chrome, but 0 in ...
3
votes
6answers
277 views

Why getter & setter if return value is mutable?

In C++ a getter & setter for a private data member is very useful due to the ability to control mutability via a const return value. In Java, if I understand correctly (please correct me if I am ...
3
votes
6answers
228 views

Is there a way to automatically generate getters and setters if they aren't present in C++?

I'm experienced with Objective-C, and in Objective-C you can let the compiler generate getters and setters for you if they aren't already present (@synthesize). Is there a way to do this in C++, or ...
3
votes
1answer
55 views

Dot syntax & synthesize

I was wondering if synthesize has some sort of support for dot syntax. My goal here is just to learn more about it - I realize I can achieve the goal by defining the getter myself. I have been ...
3
votes
2answers
277 views

Objective C - Custom @synthesize?

Is it possible to somehow create a custom @synthesize to generate custome getter, setters ?? For example: @interface @property (nonatomic, retain) MyObject *object; @end @implementation ...
3
votes
6answers
198 views

How can I avoid getters AND avoid hard coding the UI?

I want to print a description of a warrior to the console that will include the warrior's strength and the warrior's weapon in the form This <description> warrior uses a <weapon> For ...
3
votes
1answer
382 views

JavaScript getters/setters and extending objects

I'm researching getters and setters in JavaScript and how well they go with spread functions for extending objects, like jQuery's $.extend and Underscore's _.extend. The code setup is as follows: var ...

1 2 3 4 5