3
votes
4answers
79 views
How dynamic casts work?
Let's say I have type A, and a derived type B. When I perform a dynamic cast from A* to B*, what kind of "runtime checks" the environment performs? How does it know that the cast i …
0
votes
4answers
35 views
How can I create a javascript class and access an internal collection using and index/name lookup?
I currently have this:
function SystemCollection () {
this.systems = [];
this.getSystem = function (id) {
for(var s in this.systems) {
if(s.num == id)
r …
0
votes
2answers
23 views
Abstract class ‘n Interface, specifically in PHP
This question is in continuation to my previous post located here.
Since there is no way to post code sample again without editing your original post, I am starting a new post. A …
0
votes
5answers
132 views
What is the story on $variable->something in PHP?
I've seen this used a lot, especially with SimpleXML.
Is this:
$row->unixtime
simply the same as doing this???
$row[unixtime]
What is this called, why/how should it be u …
1
vote
7answers
146 views
Self Instantiation in Java
How do I self-instantiate a Java class? I should not use any file other than its class file. Also assume that after the line where I initialized the NAME variable, they don't know …
0
votes
7answers
116 views
Comparing variables in two instances of a class.
Hello!
i have what i hope is a quick question about some code i am building out.. basically i want to compare the variables amongst two instances of a class (goldfish) to see if o …
15
votes
18answers
1k views
Why use getters and setters?
What's the advantage of using getters and setters - that only get and set - instead of simply using public fields for those variables?
If getters and setters are ever doing more t …
0
votes
3answers
97 views
How do I compare two objects based on their base class?
I would like to be able to compare two classes derived from the same abstract class in C#. The following code illustrates my problem.
I now I could fix the code by making BaseClas …
2
votes
9answers
116 views
is C++ completely object oriented languge?
i read about small talk being completely object oriented.. is C++ also completely object oriented? if no.. then why so??
0
votes
5answers
94 views
C#: where to put “save()” method?
I have a question, here is an example
I have a Model class: Stock
public class Stock{
//some properties, stock name, stock code;
public String StockName{
get, …
2
votes
4answers
123 views
Examples of Object-Oriented Projects Help Procedural Programmers
Please help me identify some small to medium sized open source projects that embody object oriented design (preferably in C++ or Java). I would like to use these projects to demon …
1
vote
3answers
30 views
Is there an easy way to create derived attributes in Django Model/Python classes?
Every Django model has a default primary-key id created automatically. I want the model objects to have another attribute big_id which is calculated as:
big_id = id * SOME_CONSTANT …
17
votes
27answers
959 views
How can I practice better object-oriented programming?
I have been programming in object-oriented languages for years now but secretly I look at some of the things my colleagues do with envy. A lot of them seem to have some inner OO i …
0
votes
1answer
24 views
What causes MOVE_CAST_ERROR when down-casting a reference object in ABAP?
I'm creating a class that inherits from a parent class with protected instantiation. The super class has a static method that provides an instance of the class.
The following code …
2
votes
5answers
217 views
Object oriented design?
I'm trying to learn object oriented programming, but am having a hard time overcoming my structured programming background (mainly C, but many others over time). I thought I'd wri …
