Tagged Questions

0
votes
10answers
179 views

Best practice: Accessor properties or parameterless methods?

Which is the better practice and why? bool IsTodayMonday { get { return DateTime.Now.DayOfWeek == DayOfWeek.Monday; } } Or bool IsTodayMonday() { return DateTime.Now.DayOfW …
0
votes
3answers
97 views

In migrating from Java to C# what should I know about accessor classes

I am a Java programming now also writing in C#. I have seen Accessor classes generated by the VS test generating software (to give access from Tests to private members or functions …
6
votes
8answers
1k views

Is there a way to simulate the C++ ‘friend’ concept in Java?

I would like to be able to write a Java class in one package which can access non-public methods of a class in another package without having to make it a subclass of the other cla …
2
votes
7answers
1k views

“Read only” Property Accessor in C#

I have the following class: class SampleClass { private ArrayList mMyList; SampleClass() { // Initialize mMyList } public ArrayList MyList { get …
4
votes
6answers
1k views

getters/setters in java

I'm a n00b in java, but have some OOP experience with actionscript 3, so I'm trying to migrate relying on stuff I know. I as3 you can create getters and setters using the get and …
3
votes
5answers
171 views

Accessor with different set and get types?

Simple question, hopefully a simple answer: I'd like to do the following: private DateTime m_internalDateTime; public var DateTimeProperty { get { return m_internalDateTime.To …
3
votes
3answers
315 views

Is there a way for Ruby accessors to return something other than the set variable?

I want to do some checking in a writer accessor. My first idea was returning a boolean. class MyClass def var=(var) @var = var # some checking return true end end …
3
votes
5answers
376 views

What is the best way to access properties from the same class, via accessors or directly?

This is something I'm not much consistent about and always curious about what other people do. How do you access internal properties (private or public)? For example you've got …
0
votes
1answer
182 views

SkinID on custom control not working (asp.net)

I am deriving a control from syste.web.ui.webcontrols.button. I am then calling it buttonv2. I am then adding an arbitrary property to this new class, "int abc", accessing it via …
0
votes
1answer
69 views

How do I get the value of a JSObject property from C?

In SpiderMonkey, how do I get the value of a property of a JSObject from within my C code? static JSBool JSD_getter(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval * …