0
votes
2answers
69 views
Does static make it slow
Not sure how it works but I have a question:-
Does static make the application slow as same variable or method is shared throughout the application, and while one request is using the method or …
2
votes
2answers
71 views
Should I ever use Enums as discriminators?
When do Enumerations break down?
To support a new feature in an existing system, I was just considering implementing some form of discriminator to an entity table in my database schema.
In wanting …
0
votes
2answers
15 views
PHP set current directory to class constant
I have a config file at the root directory of my project which contains a class of constants that are environment specific. The problem I'm having is how to set the current directory as the ROOT var. …
5
votes
4answers
101 views
Python - Exists a function that is called when an object does not implement a function?
In Smalltalk there is a message DoesNotUnderstand that is called when an object does not understand a message (this is, when the object does not have the message sent implemented).
So, I like to …
0
votes
3answers
155 views
Looking for Object-Oriented Programming journal
I'm looking for a journal which discusses OOP and modern programming technologies.
Can anyone recommend any?
2
votes
5answers
58 views
OOP - How to choose a possible object candidate?
I 'm concern about what techniques should I use to choose the right object in OOP
Is there any must-read book about OOP in terms of how to choose objects?
Best,
3
votes
2answers
56 views
Using Singletons in PHP
I want to use a DB Singleton i created, in several Methods of a Class. Is it more appropriate to Instantiate the Singleton individually in each Method, or to Instantiate it through the __constructor() …
1
vote
6answers
113 views
Programming Languages - Who Inspired Whom? [closed]
Working on PHP frameworks lately, i notice that many of them are inspired by java or ruby frameworks. For instance, the Doctrine ORM is based on RoR's Activerecord (with maybe some elements of Java's …
0
votes
4answers
38 views
PHP: get all method names from an object with name “bla_”
I have an object and want a method that returns how much method this Object have that start with "bla_".
I found get_class_methods() wich returns all method names, but I only want names which starts …
1
vote
4answers
71 views
Yield from C# to C++, dealing with containers
Hi there.
Actually, I have a design question here. Its very simple but the point is:
I have one C++ class that has a STL vector declared as a private member. But the clients of that class need to …
2
votes
4answers
34 views
Php abstract class site configuration
Hi, i have a config class which is an abstract class. I would like to set it up so it automatically detects which server the site is on and then assigns appropriate constants. I get an error on line …
0
votes
3answers
55 views
abstract method override in Derived class, how to make private
Hi I have a class "A" with as abstract method
protected abstract List<Contributor> GetContributors(List<SyndicationPerson> contributersList);
I want to override this method in derived …
0
votes
3answers
47 views
Instantiating a Type Parameter Without Passing an Object
My question is very similar to this question. I want to be able to instantiate an object of the type parameter type, but also without needing to pass in a "factory". I really need to be contained all …
3
votes
4answers
80 views
Is using __PACKAGE__ inside my methods bad for inheritance?
If inside my code I'll have calls like:
__PACKAGE__->method;
will this limit the usability of this module, if this module is inherited?
1
vote
6answers
113 views
Hobbyist - Developer Book Recommendations
It will be a gift for a family member. He's older, a retired school teacher and likes to tinker with programming mostly as a mental exercise to stop the old brain cells from gelatinizing.
I've seen …
