Tagged Questions
The accessors tag has no wiki summary.
16
votes
2answers
2k views
Valid use of accessors in init and dealloc methods?
I've heard now from several sources (stackoverflow.com, cocoa-dev, the documentation, blogs, etc) that it is "wrong" to use accessors and settings (foo, setFoo:) in your init and dealloc methods. I ...
16
votes
11answers
2k views
public variables vs private variables with accessors
Has anyone else seen people do this:
private string _name;
public string Name{ get{ return _name; } set{ _name = value;}}
I understand using accessors if you are going to exercise some sort of ...
10
votes
3answers
222 views
Can I create accessors on structs to automatically convert to/from other datatypes?
is it possible to do something like the following:
struct test
{
this
{
get { /*do something*/ }
set { /*do something*/ }
}
}
so that if somebody tried to do this,
test tt = ...
8
votes
6answers
4k views
C++ return a “NULL” object if search result not found
I'm pretty new to C++ so I tend to design with a lot of Java-isms while I'm learning. Anyway, in Java, if I had class with a 'search' method that would return an object T from a Collection< T > ...
7
votes
1answer
1k views
Visual Studio keyboard short-cut to complete default accessors {get; set;}
I am looking for a keyboard short-cut to complete creating the default accessors for a property in a C# class.
Something like...
I start typing:
public int Id
Then I press one or more keys, and I ...
6
votes
2answers
564 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 ...
6
votes
5answers
181 views
Any advantage to objects.GetObject(i) over objects[i]?
I'm refactoring a little bit of C# data access code from a previous developer and am curious about a pattern he used.
The code initially exposed collections (arrays) of a variety of ...
6
votes
4answers
344 views
Any problems with this C++ const reference accessor interface idiom?
I was converting a struct to a class so I could enforce a setter interface for my variables.
I did not want to change all of the instances where the variable was read, though.
So I converted this:
...
5
votes
3answers
116 views
C# Custom getter/setter without private variable
I learned c# recently, so when I learned to write variables, I was taught to do it like this:
public string Name { get; set; }
Auto properties are great! But now I'm trying to do something a little ...
5
votes
6answers
193 views
Help me understand Get{} Set{} please
Can somebody help me understand the get{} and set{} and walk a newcomer through?
I already asked in Yahoo! Answers and I still couldn't quite get it :( please help me out here,
Thanks.
Important ...
5
votes
2answers
2k views
Why Automatically implemented properties must define both get and set accessors
When we define a property like
public string Name {get; set;}
dot net can make our properties code. but when we use
public string Name {get;}
public string Name {set;}
we face with
...
5
votes
6answers
3k views
What is the definition of “accessor method”?
I've been having an argument about the usage of the word "accessor" (the context is Java programming). I tend to think of accessors as implicitly being "property accessors" -- that is, the term ...
5
votes
4answers
878 views
Launch an event that has accessors
How can I launch an event that has accessors like this :
public event EventHandler CanExecuteChanged
{
add
{
CommandManager.RequerySuggested += value;
}
remove
{
...
4
votes
2answers
175 views
Which of these memory management techniques is better in what situations?
Apple's Memory Management Programming Guide shows three officially sanctioned techniques for writing accessor methods that need to retain or release object references.
In the case of the first two ...
4
votes
8answers
401 views
Should accessors return values or constant references?
Suppose I have a class Foo with a std::string member str. What should get_str return?
std::string Foo::get_str() const
{
return str;
}
or
const std::string& Foo::get_str() const
{
...
4
votes
2answers
917 views
write only property in objective-c
Hai folks,
I am struck with objective-c properties. what i need is, assign write only property for the variable exactly opposite to readonly, i.e the variable can have setMethod, but it should not ...
4
votes
1answer
2k views
initializer, properties, accessors and copy/retain/readonly
I want to understand how to set the parameters of properties (accessors).
I took the following code from an example of Kal calendar.
// Holiday.h
@interface Holiday : NSObject
{
NSDate *date;
...
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
4answers
241 views
Is it possible to add an accessor to a property in .NET by overriding it?
Is it possible to do something like this?
class A
{
public virtual string prop
{
get
{
return "A";
}
}
}
class B: A
{
private string X;
public ...
3
votes
2answers
93 views
How to create properties with “delegated” accessors?
I'm new to c# and have been puzzling over this for a couple of days. Basically I want to create a type of property with getter and setter logic delegated to a base type to which this parameter ...
3
votes
6answers
156 views
Accessors without the (), or const references to a member variable
I am interested in creating a class I can use like
class MyClass {
vector<int> m_vec;
public:
// Either this
const& vector<int> vec;
// Or some version of this.
const& ...
3
votes
4answers
420 views
What is the best practice for unit testing private methods in .NET?
Recently in order to implement unit testing for a private method of a class, I used PrivateObject by creating a private accessors instead of using Reflection, to which I received the following code ...
3
votes
4answers
199 views
Is there a technical reason why an automatic property must define both a get and set accessor
I know that automatic properties must define a get and set accessor method, I also know that it is possible for either of these accessors to be made invisible by means of an access modifier.
Is there ...
3
votes
4answers
142 views
What was the name of the set accessor that only lets the value to be set in the constructor?
public class MyClass
{
public string Name {get; KEYWORD set;}
public MyClass(string name)
{
this.Name = name;
}
}
Any ideas what the KEYWORD was? I searched all over but it's hard to ...
3
votes
8answers
301 views
Should a C# accessor use a private variable or calculate on the fly?
Which is a better programming practice and why?
I have a class like this:
class data {
public double time { get; internal set; }
public double count { get; internal set; }
public ...
3
votes
2answers
91 views
Expose class attributes with accessor
I don't know the correct technical terms to describe my question, so I'll give an example:
private Point _PrivateVect = new Point();
public Point Publicvect
{
get
{
...
3
votes
3answers
140 views
Customising attr_reader to do lazy instantiation of attributes
(Big edit, I got part of the way there…)
I've been hacking away and I've come up with this as a way to specify things that need to be done before attributes are read:
class Class
def ...
3
votes
3answers
182 views
Difference between these two accessor/getter/setter methods?
Whats the difference now between doing this:
public string Title { get; set; }
and this:
public string Title;
Back in the day people always said use accessor methods with private variables ...
3
votes
3answers
109 views
Empty accessors do matter? Regarding value types and their modification
I have following code that does not work due to "a" being a value typed. But I thought it would not work even without accessors, but it did:
class Program
{
a _a //with accessors it WONT ...
3
votes
3answers
964 views
static/Shared in VB.NET and C# visibility
I have faced with a situation in VB.NET and C# (.NET2) with the visibility of the static/shared members. It seems to me a little strange in VB.NET:
public class A
{
private static A ...
3
votes
3answers
730 views
Objective C - Using an accessor if It does nothing different
In objective c, if the using the getter and directly accessing the ivar do exactly the same thing, no lazy loading code in the getter, all it does is returns the ivar, would you still use the accessor ...
2
votes
3answers
29 views
How should I perform an asynchronous action within an accessor?
I have a simple accessor in my class:
public function get loggedIn():Boolean
{
var loggedIn:Boolean = somePrivateMethodToCheckStatus();
return loggedIn;
}
The API I'm now working with ...
2
votes
2answers
66 views
Accessor invocation in Objective-C
What is the difference between:
self.ivar;
self->ivar;
ivar;
Way of accessing ivar's in objective C.
When will the setter be invoked?
2
votes
8answers
100 views
Why can't we assign a foreach iteration variable, whereas we can completely modify it with an accessor?
I was just curious about this: the following code will not compile, because we cannot modify a foreach iteration variable:
foreach (var item in MyObjectList)
{
item = ...
2
votes
3answers
137 views
Is it bad practice to have a set method without its own get method?
Let's say I have a class (the name circle was random and has no significance):
Class circle{
double colorFrequency_;
public:
void setColor(double colorFrequency){ ...
2
votes
1answer
158 views
Access a module's class variables inside a class in Ruby
I have a module with a class variable in it
module Abc
@@variable = "huhu"
def self.get_variable
@@variable
end
class Hello
def hola
puts Abc.get_variable
end
end
end
a ...
2
votes
2answers
151 views
Is there any advantage to using properties over public variables?
This might be a very stupid question, but I have to ask it anyway. I am graduating in about a month and while studying, I have always been taught to use properties instead of public variables.
So I ...
2
votes
1answer
60 views
conditions for accessors in Coldfusion ORM
Once you have loaded a component are you then able to access properties of that object with set conditions? For instance, if you have a one-to-many relationship between people and pets, you load ...
2
votes
6answers
115 views
Why Java Beans demand accessors?
please, dont try to kill me with all the "only accessors are right" talk... I came in peace :)
I just kindly want to ask, what is the main reason, that Java Beans MUST use accessors even in ...
2
votes
4answers
377 views
iOS First Application “self.userName = textField.text” question. When to use self
Here is a code snippet from Apple's "Your First iOS Application" document.
- (IBAction)changeGreeting:(id)sender {
self.userName = textField.text;
NSString *nameString = self.userName;
if ...
2
votes
1answer
211 views
Core Data Primitive Accessors
I'm a little confused by whether Core Data generates primitive accessors for NSManagedObject subclasses in the form setPrimitiveAttributeName:, as compared to the form setPrimitiveValue: forKey:, ...
2
votes
4answers
103 views
Is this code setting values via accessors soon after object creation
var dlg = new Microsoft.Win32.OpenFileDialog
{
Title = "Select configuration",
DefaultExt = ".xml",
Filter = "XML-file (.xml)|*.xml",
CheckFileExists = true
};
I got the above piece ...
2
votes
3answers
204 views
Auto-implemented get/set properties
Is there any downside to letting C# create the private backing fields that are generated by using the automatic property creation (ie {get; set})?
I am aware that it is automatic and therefore you ...
2
votes
2answers
477 views
Objective-C Accessor Methods and Use of Autorelease
I've been reading an apple document on Memory Management and am now a bit confused regarding the recommended implementation of Accessors. Apple cites 3 approaches in implementing accessors.
...
2
votes
1answer
375 views
Build failure in unit test project with accessors of a project containing covariant types
Lets start at the beginning :) I added a covariant interface to our project:
interface IView
{
}
interface IPresenter<out TView> where TView : IView
{
TView View { get; }
}
I created ...
2
votes
1answer
245 views
Understanding Haskell accessor functions
I'm reading up on Monad tutorials, and the one I'm working on now is http://www.muitovar.com/monad/moncow.xhtml , but I ran on a problem with the state Monad, or to be more precise the runState ...
2
votes
4answers
76 views
How to implement this feature in PHP?
When accessing member that doesn't
exist, automatically creates the
object.
$obj = new ClassName();
$newObject = $ojb->nothisobject;
Is it possible?
2
votes
1answer
1k views
How do I safely access the contents of an NSArray property from a secondary thread?
I have an app (using retain/release, not GC) that maintains an NSArray instance variable, which is exposed as a property like so:
@interface MyObject : NSObject
{
NSArray* myArray;
}
@property ...
2
votes
4answers
351 views
Make an object accessible to only one other object in the same assembly?
Each business object has a matching object that contains sql calls. I'd like to restrict these sql objects in a way where they can only be used by the matching business object. How can this be ...
2
votes
7answers
376 views
using accessors in same class
I have heard that in C++, using an accessor ( get...() ) in a member function of the same class where the accessor was defined is good programming practice? Is it true and should it be done?
For ...