8
votes
12answers
202 views
Java class with only static fields and methods - bad or good practice?
I have a Java class that only consists of static member variables and static methods. It is basically serving as a utility class. Is this a bad practice to have a class that only consists of static …
1
vote
18answers
467 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 …
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
…
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
89 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?
0
votes
1answer
20 views
Comparing two inherited objects Ruby
Hi,
I have a base class which contains an equal? method. I've then inherited that object and want to use the equal? method in the super class as part of the equal? method in the sub class.
class …
1
vote
11answers
314 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
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 …
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
…
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
…
4
votes
1answer
99 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
2answers
25 views
Make sure only corresponding implementations or childs of it will be handled
Imagine the following situation:
As may notice the Handler-childs and the Costumer-childs match each other. Each Handler has a method that takes a costumer.
Is there any good way true oo-ish to …
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 …
1
vote
7answers
247 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 …
