The getter-setter tag has no wiki summary.
27
votes
10answers
615 views
Is there a way to intercept setters and getters in C#?
In both Ruby and PHP (and I guess other languages as well) there are some utility methods that are called whenever a property is set. ( *instance_variable_set* for Ruby, *__set* for PHP).
So, let's ...
24
votes
10answers
3k views
C++: Is it good practice to make getters and setters inline?
The title says it all.
public:
inline int GetValue() const {
return m_nValue;
}
inline void SetValue(int nNewValue) {
this -> m_nValue = nNewValue;
}
On ...
19
votes
13answers
1k views
What is the point of setters and getters in java?
Please forgive the length, but here are two programs, both the exact same, but one with and one without setters, getters, and constructors.
I've taken a basic C++ class before and don't remember any ...
17
votes
5answers
452 views
Not Using Getters and Setters
I'm making a very simple class to represent positions in 3D space.
Currently, I'm just letting the user access and modify the individual X, Y and Z values directly. In other words, they're public ...
16
votes
11answers
3k views
Getters, setters, and properties best practices. Java vs. C#
I'm taking a C# class right now and I'm trying to find out the best way of doing things. I come from a Java background and so I'm only familiar with Java best-practices; I'm a C# novice!
In Java if I ...
11
votes
2answers
210 views
Getter with side effect
I create a class whose objects are initialized with
a bunch of XML code. The class has the ability to extract various parameters out of that XML and to cache them inside the object state variables. ...
11
votes
15answers
6k views
Java Getters and Setters
Is there a better standard way to create getters and setters in Java?
It is quite verbose to have to explicitly define getters and setters for each variable. Is there a better standard annotations ...
10
votes
7answers
23k views
C++ getters/setters coding style
I have been programming in C# for a while and now I want to brush up on my C++ skills.
Having the class:
class Foo
{
const std::string& name_;
...
};
What would be the best approach ...
9
votes
5answers
419 views
PHP OOP; independent getter/setter methods, or combined?
While working on a project, I've been making some changes and browsing around existing framework API docs for insight.
While perusing the Kohana docs, I noticed that the getters/setters of any given ...
8
votes
7answers
989 views
Python @property versus getters and setters
Here is a pure Python-specific design question:
class MyClass(object):
...
def get_my_attr(self):
...
def set_my_attr(self, value):
...
and
class MyClass(object):
...
8
votes
12answers
932 views
getters and setters style
(Leaving aside the question of should you have them at all.)
I have always preferred to just use function overloading to give you the same name for both getter and setters.
int rate() { return ...
7
votes
2answers
627 views
Unit testing accessors (getters and setters)
Given the following methods:
public function setFoo($foo) {
$this->_foo = $foo;
return $this;
}
public function getFoo() {
return $this->_foo;
}
Assuming, they may be changed to ...
7
votes
4answers
641 views
usage of property vs getters/setters in business classes
When dealing with buisness classes, like the typical Customer and Employee classes, is it better to use getters and setters only or to use properties?
I am translating to Delphi (for self learning) ...
6
votes
3answers
90 views
Why would you declare getters and setters method private?
I saw a code where getters and setters methods are declared private. I am trying to figure out the logic behind it, and I am really having hard time to understand why would you declare them as ...
6
votes
3answers
132 views
Correct useage of getter/setter for dictionary values
I'm pretty new to Python, so if there's anything here that's flat-out bad, please point it out.
I have an object with this dictionary:
traits = {'happy': 0, 'worker': 0, 'honest': 0}
The value for ...
6
votes
4answers
203 views
JavaWorld on OO: Getters/Setters vs Builder
Background:
I found this article on JavaWorld, where Allen Holub explains an alternative to Getters/Setters that maintains the principle that the implementation of an object should be hidden (his ...
6
votes
7answers
363 views
Calling the variable property directly vs getter/setters - OOP Design
I know this is probably subjective but I read this optimization page from Google for PHP and they suggest use the variable property directly without the need of getters and setters. Understandably I ...
6
votes
4answers
189 views
__get() function behavior in php
I was trying to find the sequence in which magical methods are called in PHP. Hence wrote a very basic program
class testme
{
public $var1;
/*function __construct()
{
...
6
votes
5answers
990 views
Doctrine 2 Whats the Recommended Way to Access Properties?
I remember reading that in Doctrine 2 models, I should not set properties/fields public. How then would you expose these fields? The sandbox used get*() & set*() methods. Is that the best idea? ...
6
votes
5answers
974 views
Naming convention for getters/setters in Java
if I have the following private member:
private int xIndex;
How should I name my getter/setter:
getXindex()
setXindex(int value)
or
getxIndex()
setxIndex(int value)
EDIT: or
getXIndex()
...
6
votes
5answers
382 views
What's the pythonic way to use getters and setters?
I'm doing it like:
def set_property(property,value):
def get_property(property):
or
object.property = value
value = object.property
I'm new to Python, so i'm still exploring the syntax, ...
6
votes
6answers
523 views
Do you use the get/set pattern?
Using get/set seems to be a common practice in Java (for various reasons), but I hardly see Python code that uses this.
Why do you use or avoid get/set methods in Python?
5
votes
2answers
59 views
Obj-C, properties for everything
I have started work at a new company and one of the guidelines I have been told to adhere to by my team lead is to rarely use retain/release and instead rely on properties for memory management. I ...
5
votes
2answers
212 views
Benefit from generated getters and setters in Play! framework
The Play! framework generates getters and setters for each public field of a model class at runtime.
public class Product {
public String name;
public Integer price;
}
will be transformed ...
5
votes
4answers
158 views
Getters/setters of a class having a map
What is the best practice in implementing/providing getters/setters for a class containing a map?
The most common implementation I see is:
public class MyClass {
private Map<String, String> ...
5
votes
4answers
564 views
Use of getter-setter within class
Should one use under any circumstances getters-setters of a class within the class?
5
votes
5answers
967 views
Best way to create class getter/setters in Javascript?
Coming from C#/PHP, I would like to have full getters/setters on the classes (functions) that I create with Javascript.
However, in much of the Javascript code I have encountered, getters and setters ...
5
votes
9answers
264 views
Should I bother with getters and setters in PHP?
I am making a new class in PHP. I don't anticipate this class ever being extended. Should I bother with making class members private and implementing getter and setter functions?
Part of me thinks ...
5
votes
4answers
2k views
Overriding Doctrine_Record (sfDoctrineRecord) instance methods in Doctrine PHP Symfony
My background is in Propel, so I was hoping it would be a simple thing to override a magical getter in a Doctrine_Record (sfDoctrineRecord), but I'm getting either a Segfault or the override method is ...
4
votes
2answers
405 views
What does this C++ setter/getter pattern break?
Using the GLSL syntax in C++
I wrote custom vector classes such as vec2, vec3 etc. that mimic the GLSL types and look roughly like this:
struct vec3
{
inline vec3(float x, float y, float z)
...
4
votes
8answers
232 views
C++ Getters-Setters in Implementation File
I'm relatively new to C++ and I think that my question may be understood best by example. In my header file, suppose I have
class myClass{
public:
double getVar1();
void ...
4
votes
2answers
87 views
Adding a setter to a derived interface
Is it possible somehow to achieve this behavior in C#:
public interface IReadOnly
{
Data Value { get; }
}
internal interface IWritable : IReadOnly
{
Data Value { get; set; }
}
I want to ...
4
votes
1answer
321 views
Accessing properties hidden by __defineGetter__/__defineSetter__ in JavaScript
I am trying to define a custom setter for the innerHTML property. Unfortunately, i am unable to access the underlying property after i define the setter function:
...
4
votes
3answers
1k views
Scala Constructors, Named Arguments, and Implicit Getters/Setters
Is it possible to use named arguments in a Scala constructor, and later on override getters and setters without breaking the constructor interface or making the code extremely ugly?
Take the ...
4
votes
5answers
1k views
C# getter and setter shorthand
If my understanding of the internal workings of this line is correct:
public int MyInt { get; set; }
Then it behind the scenes does this:
private int _MyInt { get; set; }
Public int MyInt {
...
4
votes
5answers
330 views
Is it wrong to use the dot syntax as a getter?
I know that the . is a shortcut for a setter. Sometimes, I use that kind of code:
cell.textLabel.text = [NSString stringWithFormat:@"this is row %i", indexPath.row];
This works as expected, but I ...
4
votes
1answer
168 views
Eclipse JDT: Is there a refactoring to replace direct field accesses with setter/getter methods?
I know I can generate setters and getters for fields in the Eclipse source menu, but I'm very surprised it doesn't offer to replace the direct field accessors with calls to the newly created methods.
...
3
votes
3answers
41 views
Protected mutators (setters)
Problem
Suppose you have a class user. You want to be able to return this user object to others so they can use it to extract information using getters. However, you don't want people to be able to ...
3
votes
4answers
88 views
Implementing setter and getter in JavaScript object
I want to implement setter and getter on local
javascript variable. Here is an example function:
function someThing() {
var someLocalvariable = '';
}
// with this function I want to
// return ...
3
votes
1answer
136 views
Why do PHP magical methods have to be public?
I use magical methods in my PHP classes but when i try to put them private, I'm warned :
WARN: The magic method __get() must have public visibility and cannot
be static in ...
I wouldn't like ...
3
votes
3answers
141 views
Is it possible to implement dynamic getters/setters in JavaScript?
I am aware of how to create getters and setters for properties whose names one already knows, by doing something like this:
// A trivial example:
function MyObject(val){
this.count = 0;
...
3
votes
6answers
332 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
652 views
c#: getter/setter
I saw something like the following somewhere, and was wondering what it meant. I know they are getters and setters, but want to know why the string Type is defined like this. Thanks for helping me.
...
3
votes
3answers
155 views
What is the correct attribute for a setter/getter for an int?
I have seen a number of different ways to propertise/synthesize a int, but I don't know the proper way.
I usually do:
@property (nonatomic, assign) int myInt
But I have seen people use:
...
3
votes
5answers
533 views
C# getters, setters declaration [closed]
Possible Duplicates:
Why use getters and setters?
C# 3.0 Auto-Properties - useful or not?
Is there a difference between defining properties the following way -
// private, with getter ...
3
votes
8answers
1k views
Getters and setters and container objects (ArrayList, HashMap, etc)
Say you have a domain class that has an ArrayList attribute. What is the best practise when writing getters and setters for this type of instance (to avoid it being modified)?
3
votes
3answers
346 views
Is it possible to read the value of a annotation in java?
this is my code:
@Column(columnName="firstname")
private String firstName;
@Column(columnName="lastname")
private String lastName;
public String getFirstName() {
return firstName;
}
...
3
votes
3answers
37 views
How do I ensure the value of property for others that are dependent upon it?
I have a property like so:
private Decimal _payout;
public Decimal PayoutValue
{
get { return _payout; }
set
{
_payout = value;
//second part of ...
3
votes
5answers
208 views
Java Public Var question [closed]
Possible Duplicate:
Property and Encapsulation
NEWB Alert!!
I am starting with Android and Java and I am starting to understand it but I am wondering why I should use getters and setters ...
3
votes
2answers
455 views
Is it possible to auto generate Getter/Setter from Array Values in PHP?
So I have a couple of arrays
$array_1 = Array('one','two','three');
$array_2 = Array('red','blue','green');
Is there a dynamic way to create the Setters and Getters for an array with single value ...