1
vote
17answers
444 views
Can you write any algorithm without an if statement?
This site tickled my sense of humour - http://www.antiifcampaign.com/ but can polymorphism work in every case where you would use an if statement?
0
votes
3answers
57 views
Get class object __dict__ without special attributes
For getting all the defined class attributes I try to go with
TheClass.__dict__
but that also gives me the special attributes. Is there a way to get only the self-defined attributes or do I have to …
16
votes
20answers
655 views
OOP: When is it an object?
I'm trying to understand object orientation. I understand it a little bit of course, but sometimes I'm not 100% clear. How do you decide what should be turned into an object (small object part of …
1
vote
11answers
313 views
What is the difference between object-oriented langauges and non object-oriented languages?
I am new to programing and I have been hearing a lot about how C is a non-object-oriented language and how java is an object-oriented language I was wondering what the difference was?
Thank you.
1
vote
4answers
64 views
Two methods that differ only in LINQ where part - delegate?
I have a method:
internal List<int> GetOldDoctorsIDs
{
var Result = from DataRow doctor in DoctorTable.Rows
where doctor.Age > 30
select doctor.ID
…
18
votes
11answers
635 views
What is so special about Smalltalk?
In every technical publication, and on this site too, people are always comparing OO languages to Smalltalk. My experience is in Java: is Smalltalk so important that I should study it?
3
votes
4answers
93 views
PHP[OOP] - How to call class constructor manually?
Please see the code bellow:
01. class Test {
02. public function __construct($param1, $param2, $param3) {
03. echo $param1.$param2.$param3;
04. }
05. }
06.
07. $params = …
-1
votes
5answers
88 views
How can I use class?
I have a ready made php class. Now how can I use that class or implement it in my page?
-1
votes
1answer
177 views
How can I complete my OOP homework involving datatypes and input and such? [closed]
I really dont know what to do with this program. A String that can have a value "Student", "Faculty", "Administrative Staff" Then determine if a string is a student then declare 3 double variables …
4
votes
1answer
97 views
What is a covariant return type?
What is a covariant return type in Java? In object-oriented programming in general?
I know, it's a "just Google it"; I did, and found the answer, but I'm asking anyways because of SO's goal to be …
1
vote
4answers
68 views
PHP: Is it possible to retrieve the class name of a child class?
class Bob extends Person
{
//do some stuff
}
class Person
{
public function __construct()
{
//get the class name of the class that is extending this one
//should be Bob
…
5
votes
7answers
163 views
When to use a property vs a method? [closed]
Possible Duplicate:
Properties vs Methods
Is there any rule or general best practice as to when to use a property vs a method? Technically any parameterless method can be made in a property …
3
votes
4answers
120 views
Object-Oriented Execution
Consider the following source snippets:
Snippet #1
StoredProcedure sp = new StoredProcedure( "PROC_NAME", getConnection() );
sp.putParameter( "ID", getId() );
sp.execute();
Snippet #2
…
1
vote
7answers
246 views
Why Java is not fully object oriented? [closed]
Possible Duplicates:
Is java 100% object oriented ?
Is Java 100% object oriented?
Hi,
Can somebody tell me why java is not fully object oriented programming?
And what is meant by fully …
0
votes
3answers
95 views
Calling Functions in Objects with Javascript
I have an object defined like this:
Blah = {
hideTimer:null,
setTimer: function() {
this.hideTimer = window.setTimeout(Blah.hidePopupInner, 500);
// must be done via window due to …
