Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
4answers
9k views

Semantic Issue: Property's synthesized getter follows Cocoa naming convention for returning 'owned' objects

I'm currently using the iOS 5 SDK trying to develop my app. I'm trying to make an NSString a property, and then to synthesize it in the .m file (I have done this before with no issues). Now, I came ...
33
votes
6answers
21k views

What does the property “Nonatomic” mean?

What does "nonatomic" mean in this code? @property(nonatomic, retain) UITextField *theUsersName; What is the difference between atomic and nonatomic? Thanks
27
votes
4answers
15k views

How do I use Linq to obtain a unique list of properties from a list of objects?

I'm trying to use Linq to return a list of ids given a list of objects where the id is a property. I'd like to be able to do this without looping through each object and pulling out the unique ids ...
25
votes
7answers
4k views

Properties and Instance Variables in Objective-C 2.0

Do properties in Objective-C 2.0 require a corresponding instance variable to be declared? For example, I'm used to doing something like this: MyObject.h @interface MyObject : NSObject { NSString ...
22
votes
3answers
22k views

Making a generic property

I have a class that stores a serialized value and a type. I want to have a property/method returning the value alredy casted: property string Value { get; set; } property Type TheType { get; set; } ...
19
votes
5answers
8k views

python properties and inheritance

I have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like: class Foo(object): def _get_age(self): return 11 ...
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
2answers
5k views

Objective-C Difference between setting nil and releasing

I've learned that in dealloc you do [object release]; but in viewDidUnload (in a UIViewController subclass) you do self.object = nil. What is really the difference because self.object = nil (we're ...
15
votes
3answers
6k views

Is it possible to set private property via reflection

Can I set a private property via reflection? public abstract class Entity { private int _id; private DateTime? _createdOn; public virtual T Id { get { return _id; } ...
14
votes
4answers
256 views

When to use GetXXX() method and when a Getter property

There are some .NET libraries which use methods for accessing object data instead of getters i.e HttpWebResponse.GetResponseStream(). Also there are examples of accessing an stream by a property i.e ...
13
votes
9answers
1k views

Why won't anyone accept public fields in C#?

Seems like every C# static analyzer wants to complain when it sees a public field. But why? Surely there are cases where a public (or internal) field is enough, and there is no point in having a ...
12
votes
4answers
130 views

Adding setters to properties in overrides

Why is it allowed to change the visibility and existence of getters or setters in a property when implementing an interface? interface IFoo { string Bar { get; } } class RealFoo : IFoo { ...
12
votes
3answers
2k views

What's the purpose of an ivar when a property exists?

The following doesn't complain at compilation nor runtime about no name ivar. So why is it so common to see an ivar and @property/@synthesize. @interface PropTest : NSObject { } @property (retain) ...
12
votes
8answers
2k views

C# Pass a property by reference

Is there anyway to pass the property of an Object by reference? I know I can pass the whole object but I want to specify a property of the object to set and check it's type so I know how to parse. ...
12
votes
3answers
5k views

Watch for object properties changes in JavaScript

I just read Mozilla's documentation for the watch() method. It looks very useful. However, I can't find something similar for Safari. Neither Internet Explorer. How do you manage portability across ...
12
votes
7answers
16k views

C# thread safety with get/set

This is a detail question for C#. Suppose I've got a class with an object, and that object is protected by a lock: Object mLock = new Object(); MyObject property; public MyObject MyProperty { ...
11
votes
5answers
2k views

WCF chokes on properties with no “set ”. Any workaround?

I have some class that I'm passing as a result of a service method, and that class has a get-only property: [DataContract] public class ErrorBase { [DataMember] public virtual string Message { ...
11
votes
6answers
797 views

Should you access a variable within the same class via a Property?

If you have a Property that gets and sets to an instance variable then normally you always use the Property from outside that class to access it. My question is should you also always do so within ...
10
votes
4answers
611 views

C# 4.0: Are there ready-made, thread-safe autoimplemented properties?

I would like to have thread-safe read and write access to an auto-implemented property. I am missing this functionality from the C#/.NET framework, even in it's latest version. At best, I would expect ...
10
votes
7answers
3k views

Are C# auto-implemented static properties thread-safe?

I would like to know if C# automatically implemented properties like "public static T Prop{get;set;}", are thread safe or not. Thanks!
10
votes
7answers
4k views

JavaScript - Identify whether a property is defined and set to 'undefined', or undefined

Say I have the following code: function One() {} One.prototype.x = undefined; function Two() {} var o = new One(); var t = new Two(); o.x and t.x will both evaluate to undefined. ...
9
votes
4answers
250 views

how to localize a property description in c#?

I'm working on a class that is going to be used by some people from another countries. I have to localize every message, warning e.c. so that they can understand what we mean. In many cases i achieved ...
9
votes
2answers
280 views

Use QuickCheck by generating primes

Background For fun, I'm trying to write a property for quick-check that can test the basic idea behind cryptography with RSA. Choose two distinct primes, p and q. Let N = p*q e is some number ...
9
votes
5answers
321 views

What's the difference between encapsulating a private member as a property and defining a property without a private member?

What's the difference (Performance, memory...etc) between encapsulating a private member like this private int age; public int Age { get { return age; } set { age = value; } } and define a ...
9
votes
3answers
2k views

default value for a static property

I like c#, but why can I do : public static bool Initialized { private set; get; } or this : public static bool Initialized = false; but not a mix of both in one line ? I just need to set ...
9
votes
4answers
1k views

Passing a property as an 'out' parameter in C#

Suppose I have: public class Bob { public int Value { get; set; } } I want to pass the Value member as an out parameter like Int32.TryParse("123", out bob.Value); but I get a compilation ...
9
votes
9answers
3k views

Method vs Property in C# - what's the difference [closed]

Possible Duplicate: Properties vs Methods In method you can type some code and in properties too. For example I have a property Name. When class name changes I would like to get some data ...
9
votes
5answers
2k views

C# - get propery name inside setter

I want to preserve a property between postbacks in an ASP.Net application. Currently doing this: public int MyIndex { get { return (int)Session[ToString() + ...
8
votes
1answer
118 views

XML Comments for Override Properties

I'm using MonoDevelop 2.4.2 for OS X (the version that comes with Unity 3.4.1), and was wondering if there was some way to inherit comments from the base class or property. Example: public class Foo ...
8
votes
5answers
108 views

What's the simplest approach to check existence of deeply-nested object property in JavaScript?

I have to check deeply-nested object property such as YAHOO.Foo.Bar.xyz. The code I'm currently using is if (YAHOO && YAHOO.Foo && YAHOO.Foo.Bar && YAHOO.Foo.Bar.xyz) { ...
8
votes
6answers
203 views

Real world example about how to use property feature in python?

I am interested in how to use property in python. I've read the python docs and the example is just toy code in my opinion: class C(object): def __init__(self): self._x = None ...
8
votes
5answers
176 views

Can set any property of Python object

For example, this code is Python: a = object() a.b = 3 throws AttributeError: 'object' object has no attribute 'b' But, this piece of code: class c(object): pass a = c() a.b = 3 is just fine. ...
8
votes
1answer
6k views

property “assign” and “retain” for delegate

For iOS developer, delegate is used almost everywhere. And seem like that we need use "assign" instead of retain for delegate like this @property(assign) id delegate; The reason is to avoid ...
8
votes
6answers
486 views

Cached Property: Easier way?

I have a object with properties that are expensive to compute, so they are only calculated on first access and then cached. private List<Note> notes; public List<Note> Notes { ...
8
votes
4answers
209 views

this keyword as a property

I know c# well, but it is something strange for me. In some old program, I have seen this code: public MyType this[string name] { ......some code that finally return instance of MyType } How it ...
8
votes
3answers
3k views

Preferred way of defining properties in Python: property decorator or lambda?

Which is the preferred way of defining class properties in Python and why? Is it Ok to use both in one class? @property def total(self): return self.field_1 + self.field_2 or total = ...
8
votes
6answers
821 views

When and how to use the builtin function property() in python

It appears to me that except for a little syntactic sugar, property() does nothing good. Sure, it's nice to be able to write a.b=2 instead of a.setB(2), but hiding the fact that a.b=2 isn't a simple ...
8
votes
10answers
7k views

python: How to add property to a class dynamically?

The goal is to create a mock class which behaves like a db resultset. So for example, if a database query returns, using a dict expression, {'ab':100, 'cd':200}, then I would to see >>> ...
8
votes
9answers
4k views

Getting static property from a class with dynamic class name in PHP

I have this: one string variable which holds the class name ($classname) one string variable with holds the property name ($propertyname) I want to get that property from that class, the problem ...
8
votes
2answers
1k views

Interfaces and properties

Is it possible to declare a property in an interface without declaring the get- and set-methods for it? Something like: IValue = interface property value: double; end; I want to state that the ...
8
votes
7answers
3k views

How to get current property name via reflection?

I would like to get property name when I'm in it via reflection mechanism. Is it possible? Update: I have code like this: public CarType Car { get { return (Wheel) this["Wheel"];} ...
8
votes
7answers
9k views

“Read only” Property Accessor in C#

I have the following class: class SampleClass { private ArrayList mMyList; SampleClass() { // Initialize mMyList } public ArrayList MyList { get { return mMyList;} ...
8
votes
9answers
16k views

.NET property generating “must declare a body because it is not marked abstract or extern” compilation error

I have a .NET 3.5 (target framework) web application. I have some code that looks like this: public string LogPath { get; private set; } public string ErrorMsg { get; private set; } It's giving me ...
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! ...
7
votes
1answer
102 views

Auditing and validating changes to C# class and structure properties in a high-performance way

I have several c# structs that give shape to structures in a very large data file. These structs interpret bits in the file's data words, and convert them to first-class properties. Here is an ...
7
votes
2answers
575 views

What's the harm of property override in Objective-C?

There are several situations where you might override a super class's property. You declare a property with the same name and same attribute of its superclass'.(since if you change the attribute you ...
7
votes
3answers
840 views

Xcode4 Automatic Generation of @property declarations and all that goes with it

When I was using Xcode 3 I had configured it with a perl script I found on the web that allowed me to automatically generate the @property, @synthesize and dealloc code for new instance variables. ...
7
votes
3answers
274 views

Objective C: Why do we declare ivars in the .h member area if @property seems to do it automatically?

In implementing an interface it seems the common method in tutorials and literature is to declare an ivar and then set the @property then @synthesize. @interface MyClass : NSObject { NSString ...
7
votes
1answer
415 views

Longevity of using the Delphi text DFM format for my own store and retrieve

Over time I've rolled my own formats for saving and loading object properties but on having to revisit this I'm wondering about using Delphi's own text DFM format. I know tha this is really an ...
7
votes
3answers
2k views

Java 6 - Annotation processor and code addition

I wrote a custom annotation containing metadata for a property and an AnnotationProcessor: @SupportedAnnotationTypes({"<package>.Property"}) public class PropertyProcessor extends ...

1 2 3 4 5 26