Tagged Questions

4
votes
4answers
707 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 m = MyClass.new ...
3
votes
5answers
600 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 this property : ...
2
votes
1answer
104 views

Perl: Class::Struct Without the Type Constraints

I'm toying around with some code where bundling coderefs with variables makes sense, but using full blown OOD doesn't. Basically, I'm writing functional code but resorting to a select few OO-style ...
1
vote
4answers
59 views

I wrote Accessors and Mutators methods, but still I cant access private variables! why?

I wrote my class with its private variables and then I wrote the accessor and mutator methods needed to access those variables, but that does not work when I run it after writing the main class. Why ...
0
votes
1answer
63 views

Trying to make build rules to create accessor class to resx file

I have resources.resx file in my C++/CLI project and want to create a build to to automatically build an accessor class to help access the resources when needed. I have searched a lot but haven't ...
0
votes
2answers
188 views

Writing a simple class with accessors and mutators

I am very much a newbie to Java. I have been asked to Write a java class for a very simple Course class, named Course, that has the data members name and credit hours (e.g. "Programming and Logic I", ...