1
vote
4answers
78 views
Forcing sub classes to implement a method
Hi
I am creating an object structure and I want all sub classes of the base to be forced to implement a function.
The only ways I could think of doing it were:
An abstract clas …
1
vote
2answers
54 views
How-to do the clean up ?
I have this code.
A base class that create a new instance of the context.
public class Base
{
private Entities context;
public Base()
{
context = n …
4
votes
14answers
380 views
practical uses of OOP
I recently had a debate with a colleague who is not a fan of OOP. What took my attention was what he said:
"What's the point of doing my coding in objects? if it's reuse then I ca …
-2
votes
2answers
70 views
Inheriting from a class that inherits from a abstract class
sorry, just erased my code and did it again, it works now. must have been a silly mistake.
3
votes
3answers
41 views
Utilities file in php?
What is the best way to deal with "utility" functions in a OOP PHP framework? Right now, we just have a file with several functions that are needed throughout the system. (For ex …
1
vote
2answers
91 views
C#: Calling a virtual method from constructor; advice?
In out program, we have the following class hierarchy:
public class PagePanelBase: UserControl
public sealed class CameraParameters: PagePanelBase
CameraParameters overrides the …
1
vote
4answers
128 views
C# OOPs architecture problem
Hi,
I am facing a class resolution issue while trying to make my architecture flexible. To make it simple, consider the following example:
I have four tiers: UI, BL, Common and D …
5
votes
5answers
130 views
Uncle Bob style OOP in VB.NET: how to learn?
I’ve been professionally writing VB.NET software for seven years. However, I don’t have a strong computer science background – four courses while studying education at university …
0
votes
3answers
65 views
Advice needed from PHP/Cake PHP expert
I'm very new to programming (besides SQL and databases), but I ultimately want to master Cake PHP for web development.
Now, given how new I am, I'm rather lost as to how I get s …
0
votes
1answer
52 views
Help with my first own object in JavaScript/jQuery
I have written a PHP script that checks whether a domain is available for registration or not.
To automate the process, I have also written a js script that automatically sends AJ …
1
vote
4answers
35 views
accessing private variable from member function in PHP
I have derived a class from Exception, basically like so:
class MyException extends Exception {
private $_type;
public function type() {
return $this->_type; //l …
3
votes
5answers
42 views
Access of Non-Static Function of a Class in PHP
Why is this legal in PHP?
<?php
class Foo {
public function test() {
echo "hello\n";
}
}
Foo::test();
?>
test() is a non-static function but I can access …
5
votes
5answers
170 views
What can be instantiated?
What types in C++ can be instantiated?
I know that the following each directly create a single instance of Foo:
Foo bar;
Foo *bizz = new Foo();
However, what about with built-i …
0
votes
1answer
30 views
php singleton per object with distinct identifier
This is something I was thinking about the other day.
I want to have a singleton-like object. Instead of a single instance of a class, I want to have a single object with a match …
1
vote
8answers
170 views
Rapid switch to Java for an experienced C++ developer
I'm am looking for online tutorials/books, which assume a solid knowledge of OOP/Design patterns concepts and stress on differences (both conceptional and syntactical) between C++ …
