blah blah blah is here! blah blah » Close

1
votes
1 answers

Abstraction and Encapsulation concept

Please tell me what are exactly abstraction and encapsulation in OOPs and differences between these. I have seen different opinions in different books/websites for abstarction & encapsulation. Thank you.

2
votes
2 answers

internal is probably not a sledgehammer

If a class is nested and private, you would want the constructor to be private to the class that is nesting it. Unfortunately it seems the constructor BClass has to be "internal" or "public" in order for AClass to const ...

Feedback