Click here to Skip to main content
15,889,116 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
RantRe: A programming question Pin
W Balboos, GHB24-Sep-20 2:40
W Balboos, GHB24-Sep-20 2:40 
GeneralRe: A programming question Pin
Randor 24-Sep-20 3:36
professional Randor 24-Sep-20 3:36 
GeneralRe: A programming question Pin
W Balboos, GHB24-Sep-20 5:45
W Balboos, GHB24-Sep-20 5:45 
GeneralRe: A programming question Pin
David O'Neil24-Sep-20 8:52
professionalDavid O'Neil24-Sep-20 8:52 
GeneralRe: A programming question Pin
Stefan_Lang23-Sep-20 23:01
Stefan_Lang23-Sep-20 23:01 
PraiseRe: A programming question Pin
Randor 24-Sep-20 0:41
professional Randor 24-Sep-20 0:41 
GeneralRe: A programming question Pin
Kornfeld Eliyahu Peter23-Sep-20 21:06
professionalKornfeld Eliyahu Peter23-Sep-20 21:06 
GeneralRe: A programming question Pin
Daniel Pfeffer23-Sep-20 21:07
professionalDaniel Pfeffer23-Sep-20 21:07 
You use inheritance when a derived type must implement the functionality of the base type.
  • Public inheritance is used when the public functionality of the base type may be used by anyone.
  • Protected inheritance is used when the public functionality of the base type may be used only by further-derived types.
  • Private inheritance is used when the public functionality of the base type may not be used by further-derived types.
An example for private (or protected) inheritance might be a wrapper for the HANDLE object in Windows. A HANDLE wrapper may be constructed directly so its constructor must be public, but inside a File object you probably want only the File object (or its derived types) to be able to access the HANDLE.
Freedom is the freedom to say that two plus two make four. If that is granted, all else follows.
-- 6079 Smith W.

GeneralRe: A programming question Pin
Rage23-Sep-20 21:20
professionalRage23-Sep-20 21:20 
GeneralRe: A programming question Pin
David O'Neil23-Sep-20 21:25
professionalDavid O'Neil23-Sep-20 21:25 
GeneralRe: A programming question Pin
Rage23-Sep-20 21:30
professionalRage23-Sep-20 21:30 
GeneralRe: A programming question Pin
David O'Neil23-Sep-20 21:34
professionalDavid O'Neil23-Sep-20 21:34 
GeneralRe: A programming question Pin
Rage23-Sep-20 21:37
professionalRage23-Sep-20 21:37 
GeneralRe: A programming question Pin
David O'Neil23-Sep-20 21:39
professionalDavid O'Neil23-Sep-20 21:39 
GeneralRe: A programming question Pin
Shao Voon Wong23-Sep-20 21:55
mvaShao Voon Wong23-Sep-20 21:55 
GeneralRe: A programming question Pin
David O'Neil23-Sep-20 22:01
professionalDavid O'Neil23-Sep-20 22:01 
GeneralRe: A programming question Pin
Arthur V. Ratz23-Sep-20 22:09
professionalArthur V. Ratz23-Sep-20 22:09 
GeneralRe: A programming question Pin
Nemanja Trifunovic24-Sep-20 3:13
Nemanja Trifunovic24-Sep-20 3:13 
GeneralRe: A programming question Pin
RustyF24-Sep-20 20:56
RustyF24-Sep-20 20:56 
GeneralRe: A programming question Pin
giulicard24-Sep-20 22:01
giulicard24-Sep-20 22:01 
GeneralRe: A programming question Pin
Stuart Dootson24-Sep-20 23:13
professionalStuart Dootson24-Sep-20 23:13 
GeneralRe: A programming question Pin
patbob28-Sep-20 14:17
patbob28-Sep-20 14:17 
GeneralRe: A programming question Pin
David O'Neil28-Sep-20 15:49
professionalDavid O'Neil28-Sep-20 15:49 
GeneralRe: A programming question Pin
charlieg29-Sep-20 2:24
charlieg29-Sep-20 2:24 
GeneralScratching Goethe... Pin
Kornfeld Eliyahu Peter23-Sep-20 20:04
professionalKornfeld Eliyahu Peter23-Sep-20 20:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.