Setter is public mutator method, used in object-oriented programming, which gives new value to 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.
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. ...
15
votes
9answers
1k views

Constructor with all class properties or default constructor with setters?

Following are the two approaches: constructor with all the class properties Pros: I have to put an exact number of types of parameters so if I make an error the compiler warns me (by the way, is ...
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
538 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
1answer
925 views

WPF - Is there a good reason that Setter.Value isn't a ContentProperty?

Every time I write out a setter whose Value property value isn't describable inline, I curse the fact that the API doesn't mark the Setter class with [ContentProperty("Value")], which would allow ...
9
votes
1answer
256 views
+50

Defining Setter/Getter for an unparented local variable: impossible?

There's a few previous questions on StackOverflow questioning how one goes about accessing local variables via the scope chain, like if you wanted to reference a local variables using bracket notation ...
8
votes
7answers
155 views

Does it matter if this is used in a C++ setter?

Suppose I have a c++ class with a private variable, x. For it's setter, is there any difference using this? Is there the potential for unwanted / unexpected behavior is I don't use this? Setter: ...
8
votes
2answers
385 views

Does Binding work ONLY with DependencyProperty?

MSDN says, Each binding typically has these four components: a binding target object, a target property, a binding source, and a Path to the value in the binding source to use. For ...
8
votes
3answers
2k views

Custom setter methods in Core-Data

I need to write a custom setter method for a field (we'll call it foo) in my subclass of NSManagedObject. foo is defined in the data model and Xcode has autogenerated @property and @dynamic fields in ...
8
votes
8answers
749 views

Java - Should private instance variables be accessed in constructors through getters and setters method?

I know that private instance variables are accessed through their public getters and setters method. But when I generate constructors with the help of IDE, it initializes instance variables directly ...
8
votes
1answer
284 views

How do I alias the scala setter method 'myvar_$eq(myval)' to something more pleasing when in java?

I've been converting some code from java to scala lately trying to teach myself the language. Suppose we have this scala class: class Person() { var name:String = "joebob" } Now I want to access ...
7
votes
2answers
182 views

How does an Objective-C property setter signal failure?

Suppose you have a property with copy semantics. What should you do in the setter if the copy method fails? (I presume this is a possibility, since a copy usually starts with an alloc/init combo, ...
7
votes
5answers
695 views

A line of java code and what it does?

So I have purchased the book "Java for Dummies" 4th Edition, and I must say it is probably the best 30 dollars I have ever spent on a book. I'm not new to coding, am actually fairly decent at at it ...
6
votes
3answers
611 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
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
3answers
2k views

How do I modify the set method signature that Eclipse auto generates?

My current project has the coding convention that instance variables are never referred to with the this. prefix and that parameters should never hide instance variables. This results in setters that ...
6
votes
2answers
2k views

Rhino Mocks - Verify Property Set when Property has no Get

If you have a property: public class Fred { public string UserName { set { userName=value; } } } how do you use Rhino Mocks to check that fred= new Fred(); ...
6
votes
10answers
738 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
4answers
138 views

What is the most concise way to construct/build JavaBean objects in Scala?

Let's say Product is in a Java library that I can't tweak, so to instantiate it by calling setters: val product = new Product product.setName("Cute Umbrella") product.setSku("SXO-2") ...
5
votes
4answers
425 views

Setting properties in constructor or not : Any difference?

Here's a simple question : Is there any (performance) difference between this : Person person = new Person() { Name = "Philippe", Mail = "phil@phil.com", }; and this Person person = new ...
5
votes
3answers
4k views

Does “LValue” not mean what I think it means?

In the following code: _imageView.hasHorizontalScroller = YES; _imageView.hasVerticalScroller = YES; _imageView.autohidesScrollers = YES; NSLog(@"scrollbar? H %p V %p hide %p", ...
5
votes
1answer
183 views

Is mixing constructor-based and setter-based injections a bad thing?

I have a class for products import from CSV file operation which requires about 7 parameters. This is an info which is definitely needed for importer. All of this parameters have the same life time. ...
5
votes
1answer
475 views

How to set ContextMenu of a bound item?

I am trying to achieve the following: <Style TargetType="ListBoxItem"> <Setter Property="ContextMenu"> <Setter.Value> <ContextMenu> ...
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; ...
5
votes
2answers
5k views

Overriding a setter method, and getting info out

I have a setter method (setMinimumNumberOfSides) that I want to override after using synthesize. In it, I'm putting in a constraint on the instance variable to make sure the int is within certain ...
4
votes
1answer
135 views

How to give setter a 2nd parameter in Delphi?

I want to know whether we can do such in Delphi: I have a private procedure: procedure SetMySend(const oValue: TTM_MySend_Profile; displayValue: string = '...'); I have a public property: ...
4
votes
4answers
185 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
3answers
232 views

C# WPF How to set Property setter method dynamically?

I've been searching around but I just can't seem to find what I'm looking for, so I'll give it a go here. Situation: I have the class MainWindow and MainWindowData. In MainWindowData are only public ...
4
votes
5answers
615 views

Why to use __setattr__ in python?

I don't know for why using __setattr__ instead simple referencing like x.a=1. I understand this example: class Rectangle: def __init__(self): self.width = 0 self.height = 0 ...
4
votes
1answer
323 views

Spring autowiring setter/constructor PROs and CONs

When using @Autowired (not xml configuration), could someone compare the set/constructor binding advantages and disadvantages? See the following examples: public class Example{ private Logger ...
4
votes
11answers
563 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
2answers
360 views

Setters not run on Dependency Properties?

Just a short question, to clarify some doubts. Are setters not run when an element is bound to a dependency property? public string TextContent { get { return ...
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
533 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
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
4answers
672 views

Constant instance variables?

I use 'property' to ensure that changes to an objects instance variables are wrapped by methods where I need to. What about when an instance has an variable that logically should not be changed? Eg, ...
4
votes
4answers
1k views

Setter Methods

Is it necessary for setter methods to have one argument? Usually setter methods accept one argument as the value of a certain property of an Object. What if I want to test first the validity which ...
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
81 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
4answers
93 views

C++ function in parent return child

To be honest, I don't really know, how to ask this question, so please don't be mad :) Anyway, I want to have the mutators (setters) in my class to return this to allow for jQuery-like ...
3
votes
2answers
44 views

Implementing a custom setter for a @property while re-using default implementation

I want to report to delegate each time I set a property. The way I thought of doing it is to simply add the message to delegate during the setter of the property. Now, the obvious way would be to ...
3
votes
7answers
89 views

Chain of “instanceof's” to assemble an object

I'm facing the following code: public class BaseGroup { private Group1 group1; private Group2 group2; private Group3 group3; public void setGroup (IGroup group) { if(group ...

1 2 3 4 5 7