2
votes
2answers
23 views
better for Base: Override methods or Subscribe events?
Hello.
Let's imagine that I create a basic (even a Abstract) BaseForm for my WinApplication.
I need to do something common stuff when my forms are loaded.
Now, I have a choice: or I override the …
0
votes
1answer
18 views
Doubt on using polymorphism in coding an expression parse tree/evaluator
I am working on an interpreter for a toy language, just to learn about building an interpreter. I have already implemented a simple parser for the grammar that generates a parse tree. Now, the usual …
0
votes
3answers
38 views
Are there good tutorials on OOP with PHP?
I'm not new to OOP, but new to PHP. I know Java, Objective-C and some other object oriented languages. So I'm looking for a comprehensive overview of how OOP looks like in PHP.
0
votes
2answers
58 views
PHP class instantiation. To use or not to use the parenthesis?
Hey.
I've always assumed that - in the absence of constructor parameters - the parenthesis (curly brackets) follow the class name when creating a class instance, were optional, and that you could …
0
votes
7answers
58 views
PHP: How to call function of a child class from parent class
Hi,
How do i call a function of a child class from parent class?
Consider this:
class whale
{
function __construct()
{
// some code here
}
function myfunc()
{
// how do i call the …
0
votes
3answers
50 views
Base Class Awareness of Property Changes in Derived Classes
I was wondering if anyone had a possible solution to the following problem... I have a base class that a series of derived classes will inherit from. The base class cares about whether properties on …
0
votes
2answers
36 views
Zend Cache Howto PHP
How can i do the followin tasks
public function addToCache($id,$items)
{
// in zend cache
}
public function getFromCache($id)
{
// in zend cache
}
The first method should take an id and items …
0
votes
5answers
64 views
Data types compared to OOP objects
Is a data type a piece of code? In other words, is it software? I'm talking about fundamental data types like integer, char, etc. If so, does that indicate that objects in OOP programming are …
1
vote
5answers
104 views
How to access to the parent object in c#
Hi,
I have a "meter" class. One property of "meter" is another class called "production".
I need to access to a property of meter class (power rating) from production class by reference. The …
0
votes
5answers
62 views
Accessing a function in a class from other classes
What I want to do is access the query function in my database class form anther class. Evey time a query is done I track the time it takes and add the the query count, I want to do that for all …
9
votes
13answers
439 views
Coming from C to C++
HI all.
I have started a new job recently where I am supposed to work with C++/ I have been doing programming in C language for past 5 years. I am looking for ways to get me up to an acceptable level …
1
vote
18answers
474 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
2answers
98 views
Class implementing interface as method return type in C#
Is it possible in C# to define return type of a method as some class that additionally implement some interface?
For example, in GTK# application I would like to have a widget to display documents. I …
1
vote
5answers
114 views
Check if function has been called yet
New to OOP in PHP
One of my functions requires another function to be executed before running. Is there a way I can check this?
2
votes
5answers
96 views
abstract classes and interfaces best practices in java
So you've got an interface and an abstract class that implements a subset of the methods in the interface. You've also got some classes that inherit the abstract class and give implementations of the …
