0
votes
0answers
14 views
Kernel page request-related OOPS
Hello all;
I'm working on modifying a Linux 2.6.22-5 kernel driver in order to add threading, and I'm running into a problem I can't seem to figure out. I have set up the module …
2
votes
3answers
90 views
C++ Templates vs. Aggregation
Consider the following piece of code:
class B {
private:
// some data members
public:
friend bool operator==(const B&,const B&);
friend ostream& operat …
0
votes
8answers
236 views
Is Java 100% object oriented? [closed]
Is Java a 100% object oriented language? What is the answer if the primitive data types are excluded?
0
votes
9answers
155 views
concept of class and object
which come first class or object in opps language ?
1
vote
5answers
74 views
Design classes - OOPS features
Hi Friends,
Actually I am interested in improving my designing capability(designing of classes with its properties, methods etc) when a problem is given.
ie How to decide what coul …
0
votes
2answers
42 views
Abstract class ‘n Interface, specifically in PHP
This question is in continuation to my previous post located here.
Since there is no way to post code sample again without editing your original post, I am starting a new post. A …
0
votes
1answer
26 views
Cohesion and coupling within a component
How important are coupling and cohesion within a component of an application? Here, I am talking about all those classes in a component that are not published. How important is it …
2
votes
3answers
155 views
How to override private variable in javascript?
// base function
function Man(name) {
// private property
var lover = "simron";
// public property
this.wife = "rocy";
// privileged method
this.getLover = function(){r …
1
vote
6answers
295 views
Recursively printing data structures in Perl
I am currently learning Perl. I have Perl hash that contains references to hashes and arrays. The hashes and arrays may in turn contain references to other hashes/arrays.
I wrote …
4
votes
7answers
633 views
What is the difference between Composition and Association relationship?
In OOPS, what is the difference between composition (denoted by filled diamond in UML) and association (denoted by empty diamond in UML) relationship between classes. I'm a bit co …
4
votes
10answers
259 views
Constructors and Inheritance
Lets take an example in C#
public class Foo
{
public Foo() { }
public Foo(int j) { }
}
public class Bar : Foo
{
}
Now, All the public members of Foo is accessible in B …
6
votes
1answer
335 views
Can someone give a better example of fragile base class issues?
Fragile base class is one of the most common point that gets popped up in every discussion where reusability through implementation inheritance is discussed.
Has anyone faced any …
0
votes
3answers
112 views
How would you design the the control tree/hierarchy without inheritance?
I am aware of the responses at
Prefer composition over inheritance
and am aware of the merits of composition over inheritance.
But there are cases where inheritance does have a …
