Tagged Questions

A property, in some object-oriented programming languages, is a special sort of class member, intermediate between a field (or data member) and a method. Properties are read and written like fields, but property reads and writes are (usually) translated to get and set method calls.

learn more… | top users | synonyms (1)

218
votes
5answers
88k views

Atomic vs nonatomic properties

What do atomic and nonatomic mean in property declarations? @property(nonatomic, retain) UITextField *userName; @property(atomic, retain) UITextField *userName; @property(retain) UITextField ...
67
votes
9answers
49k views

How do I enumerate the properties of a javascript object?

I actually want to list all the defined variables and their values, but I've learned that defining a variable actually creates a property of the window object.
65
votes
6answers
16k views

C#: Extension properties

I am pretty sure it doesn't, but... Do extention properties exist? Will they exist? Anyone heard anything? I would love it if they did... I mean, are they not just technically a get and a set method? ...
51
votes
11answers
5k views

Why should I avoid using Properties in C#?

In his excellent book, CLR Via C#, Jeffrey Richter said that he doesn't like properties, and recommends not to use them. He gave some reason, but I don't really understand. Can anyone explain to me ...
51
votes
12answers
32k views

How to efficiently count the number of keys/properties of an object in JavaScript?

What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing var count = 0; for (k in myobj) if ...
43
votes
2answers
6k views

error: writable atomic property cannot pair a synthesized setter/getter with a user defined setter/getter

I recently tried to compile an older Xcode project (which used to compile just fine), and now I'm seeing a lot of errors of this form: error: writable atomic property 'someProperty' cannot pair a ...
33
votes
14answers
3k views

Properties vs Methods

Quick question: When do you decide to use properties (in C#) and when do you decide to use methods? We are busy having this debate and have found some areas where it is debatable whether we should ...
32
votes
8answers
3k views

C#: Public Fields versus Automatic Properties

We're often told we should protect encapsulation by making getter and setter methods (properties in C#) for class fields, instead of exposing the fields to the outside world. But there are many times ...
32
votes
10answers
17k views

C# property and ref parameter, why no sugar?

I just ran across this error message while working in C# A property or indexer may not be passed as an out or ref parameter I known what caused this and did the quick solution of creating a ...
30
votes
16answers
25k views

C# eval equivalent?

I can do an eval("something()"); to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#? What I am exactly trying to do is that I have an integer variable ...
28
votes
3answers
4k views

How is release handled for @synthesized retain properties?

I have some questions about synthesized properties in Objective-C. The full list follows, but the basic question is this: How does the compiler ensure that the ivars for synthesized properties are ...
28
votes
11answers
6k views

Why is it impossible to override a getter-only property and add a setter?

Why do you think (or, why is it good that) Microsoft chose not to allow: public abstract class BaseClass { public abstract int Bar { get;} } public class ConcreteClass : ...
25
votes
7answers
687 views

Problems with adding a `lazy` keyword to C#

I would love to write code like this: class Zebra { public lazy int StripeCount { get { return ExpensiveCountingMethodThatReallyOnlyNeedsToBeRunOnce(); } } } EDIT: Why? I think ...
25
votes
9answers
533 views

C# elegant way of reading a child property of an object

Say you are trying to read this property var town = Staff.HomeAddress.Postcode.Town; Somewhere along the chain a null could exist. What would be the best way of reading Town? I have been ...
23
votes
12answers
895 views

Are there any reasons to use private properties in C#?

I just realized that the C# property construct can also be used with a private access modifier: private string Password { get; set; } Although this is technically interesting, I can't imagine when ...
23
votes
3answers
22k views

How to read an external properties file in Maven

Does anyone know how to read a x.properties file in Maven. I know there are ways to use resource filtering to read a properties file and set values from that, but I want a way in my pom.xml like: ...
23
votes
5answers
1k views

Why are public fields faster than properties?

I was poking around in XNA and saw that the Vector3 class in it was using public fields instead of properties. I tried a quick benchmark and found that, for a struct the difference is quite dramatic ...
22
votes
13answers
987 views

Clean Code: Should Objects have public properties?

I'm reading the book "Clean Code" and am struggling with a concept. When discussing Objects and Data Structures, it states the following: Objects hide their data behind abstractions and expose ...
19
votes
10answers
12k views

Checking for null before ToString()

Here's the scenario... if (entry.Properties["something"].Value != null) attribs.something = entry.Properties["something"].Value.ToString(); While effective and working correctly, this looks ...
18
votes
11answers
614 views

Properties vs. Fields: Need help grasping the uses of Properties over Fields

First off, I have read through a list of postings on this topic and I don't feel I have grasped properties because of what I had come to understand about encapsulation and field modifiers (private, ...
18
votes
6answers
1k views

Is the C# compiler smart enough to optimize this code?

Please ignore code readability in this question. In terms of performance, should the following code be written like this: int maxResults = criteria.MaxResults; if (maxResults > 0) { while ...
18
votes
5answers
5k views

Passing properties by reference in C#

I'm trying to do do the following: GetString( inputString, ref Client.WorkPhone) private void GetString(string in, ref string out) { if (!string.IsNullOrEmpty(in)) { out = ...
18
votes
20answers
1k views

More private than private? (C#)

Sometimes you have a private field that backs a property, you only ever want to set the field via the property setter so that additional processing can be done whenever the field changes. The problem ...
18
votes
5answers
45k views

Create an array of integers property in Objective C

I'm having troubles creating a property of an array of integers in Objective C. I'm not sure whether this is even possible to do in Obj-C so I'm hoping someone can help me in finding out either how to ...
17
votes
15answers
4k views

Auto-implemented getters and setters vs. public fields

I see a lot of example code for C# classes that does this: public class Point { public int x { get; set; } public int y { get; set; } } Or, in older code, the same with an explicit private ...
16
votes
11answers
2k 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 ...
16
votes
5answers
2k views

Best practices: throwing exceptions from properties

When is it appropriate to throw an exception from within a property getter or setter? When is it not appropriate? Why? Links to external documents on the subject would be helpful... Google turned up ...
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
10answers
2k views

What is the best practice for using public fields?

When I write a class I always expose private fields through a public property like this: private int _MyField; public int MyField { get{return _MyField; } When is it ok to just expose a public ...
15
votes
8answers
16k views

How to use java property files?

So I have a list of key/value pairs of configuration values I want to store as java property files, and later load and iterate through. Questions: Do I need to store the file in the same package as ...
15
votes
7answers
19k views

c# - How to iterate through classes fields and set properties

I am not sure if this is possible but I want to iterate through a class and set a field member property without referring to the field object explicitly: public class Employee { public Person ...
15
votes
7answers
4k views

What exception to throw from a property setter?

I have a string property that has a maximum length requirement because the data is linked to a database. What exception should I throw if the caller tries to set a string exceeding this length? For ...
14
votes
9answers
872 views

Write-Only properties, what's the point?

I understand why you would want to use a read-only property using the following syntax: private int _MyInt; public int MyInt { get { return _MyInt; } } This example probably isn't the best one ...
14
votes
3answers
2k views

Creating a property setter delegate

I have created methods for converting a property lambda to a delegate: public static Delegate MakeGetter<T>(Expression<Func<T>> propertyLambda) { var result = ...
14
votes
5answers
1k views

Is read-only auto-implemented property possible?

I found a topic on MSDN that talks that yes, this is possible. I did a test that seems to break this statement: using System; namespace Test { class Program { static void ...
14
votes
7answers
13k views

Maven2 property that indicates the parent directory

I have a multi-modules project, like this one: main-project/ module1/ module2/ sub-module1/ sub-module2/ sub-module3/ ... module3/ module4/ ... I ...
14
votes
4answers
31k views

How can I specify system properties in Tomcat configuration on startup?

I understand that I can specify system properties to Tomcat by passing arguments with the -D parameter, for example "-Dmy.prop=value". I am wondering if there is a cleaner way of doing this by ...
13
votes
6answers
536 views

Why can't properties be readonly?

This question came up in the comments of this answer. The inability to have readonly properties was proposed as a potential reason to use fields instead of properties. For example: class Rectangle { ...
13
votes
2answers
4k views

Objective-C 2.0 properties: Why both retain and readonly?

I've noticed that some of Apple's examples include both a retain and readonly modifier on properties. What's the point of including retain if no setter gets generated when we're using the readonly ...
13
votes
4answers
4k views

Properties and Instance Variables in Objective-C

I'm rather confused about properties and instance variables in Objective-C. I'm about half-way through Aaron Hillegass's "Cocoa Programming for Mac OS X" and everything is logical. You would declare ...
13
votes
11answers
1k views

What is the preferred way of constructing objects in C#? Constructor parameters or properties?

I was wondering, what is the preferred way to construct a new object in C#? Take a Person class: public class Person { private string name; private int age; //Omitted.. } Should I ...
13
votes
7answers
5k views

C# Shorthand Property Question

So here is a bit of syntax that I have never seen before, can someone tell me what this means? Not sure if this is supposed to be some shorthand for an abstract property declaration or something or ...
12
votes
4answers
263 views

What exception to throw when a property setter is not allowed?

I have a base class that has a virtual property: public virtual string Name { get; set; } then I have a derived class that overrides only the getter of the property public override string Name { ...
12
votes
3answers
430 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 ...
12
votes
3answers
2k views

appSettings vs applicationSettings. appSettings outdated?

I've got some question about two ways to save settings in the web.config. Appsettings: Look in web.config <appSettings> <add key="key1" value="value1"/> <add key="key2" ...
12
votes
2answers
4k views

VB.Net Properties - Public Get, Private Set

I figured I would ask... but is there a way to have the Get part of a property available as public, but keep the set as private? Otherwise I am thinking I need two properties or a property and a ...
12
votes
15answers
2k views

Why do we use .NET properties instead of plain old get/set functions?

I understand the many benefits of providing an interface to access the members of a class indirectly. My question is: isn't that already something you can accomplish in just about any OO language ...
12
votes
3answers
7k views

How do I access properties of a javascript object if I don't know the names?

Say you have a javascript object like this: var data = { Name: 'Property Name', Value: '0' }; You can access the properties by the property name: var name = data.Name; var value = data["Value"]; ...
12
votes
7answers
10k views

Dumping a java object's properties

Is there a library that will recursively dump/print an objects properties? I'm looking for something similar to the console.dir() function in Firebug. I'm aware of the commons-lang ...
12
votes
4answers
5k views

How to loop through all the properties of a class?

I have a class. Public Class Foo Private _Name As String Public Property Name() As String Get Return _Name End Get Set(ByVal value As String) ...

1 2 3 4 5 55