Click here to Skip to main content
15,890,845 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Correct usage of reinterpret_cast and static_cast Pin
Stephen Hewitt13-May-07 15:04
Stephen Hewitt13-May-07 15:04 
QuestionVS build/run problem. [modified] Pin
CodeGoose12-May-07 9:01
CodeGoose12-May-07 9:01 
AnswerRe: VS build/run problem. Pin
Hans Dietrich12-May-07 10:55
mentorHans Dietrich12-May-07 10:55 
GeneralRe: VS build/run problem. Pin
CodeGoose12-May-07 13:31
CodeGoose12-May-07 13:31 
AnswerRe: VS build/run problem. Pin
prasad_som12-May-07 19:33
prasad_som12-May-07 19:33 
AnswerRe: VS build/run problem. Pin
Gary R. Wheeler13-May-07 2:37
Gary R. Wheeler13-May-07 2:37 
Questionsimple question Pin
Dj_Lordas12-May-07 8:26
Dj_Lordas12-May-07 8:26 
AnswerRe: simple question Pin
biswajit nayak12-May-07 8:50
biswajit nayak12-May-07 8:50 
i think polymerphic having many form
lets example of function overloading
fun() is a function which can have diffrent signature
fun(int );
fun(int , int );
fun(float);
signature means only no of argument and type of argument not return type;
here name mangling comes to feature which is a good feature in c++;
class a{
public:
a(){
}
a(int var){
}
a(a obj){
}
};
a is a constructor which take diffrent no of arg which is an good example of function overloading.
but constructor can't be inherited

if class a has a function name fun() and another class b derived from base a and derived also has fun() function there is ambigity occur so there is problem which can be overcome by virtual function which is a pure object oriented and from which object oriented start in c++.



biswajit nayak

AnswerRe: simple question Pin
John R. Shaw12-May-07 11:27
John R. Shaw12-May-07 11:27 
Questionrelated to vc++ and xml Pin
biswajit nayak12-May-07 8:13
biswajit nayak12-May-07 8:13 
AnswerRe: related to vc++ and xml Pin
CPallini12-May-07 8:21
mveCPallini12-May-07 8:21 
AnswerRe: related to vc++ and xml Pin
Hamid_RT12-May-07 8:26
Hamid_RT12-May-07 8:26 
Questionvc++ related question Pin
biswajit nayak12-May-07 7:46
biswajit nayak12-May-07 7:46 
AnswerRe: vc++ related question Pin
CPallini12-May-07 8:10
mveCPallini12-May-07 8:10 
Questionvc++ related question Pin
biswajit nayak12-May-07 7:34
biswajit nayak12-May-07 7:34 
Questionvc++ related question Pin
biswajit nayak12-May-07 7:10
biswajit nayak12-May-07 7:10 
AnswerRe: vc++ related question Pin
Rick York12-May-07 7:20
mveRick York12-May-07 7:20 
GeneralRe: vc++ related question Pin
biswajit nayak12-May-07 7:24
biswajit nayak12-May-07 7:24 
GeneralRe: vc++ related question Pin
Rick York12-May-07 7:26
mveRick York12-May-07 7:26 
GeneralRe: vc++ related question Pin
Jörgen Sigvardsson12-May-07 7:33
Jörgen Sigvardsson12-May-07 7:33 
GeneralRe: vc++ related question Pin
Mark Salsbery12-May-07 7:52
Mark Salsbery12-May-07 7:52 
GeneralRe: vc++ related question Pin
Jörgen Sigvardsson12-May-07 8:34
Jörgen Sigvardsson12-May-07 8:34 
GeneralRe: vc++ related question Pin
Mark Salsbery12-May-07 8:46
Mark Salsbery12-May-07 8:46 
GeneralRe: vc++ related question Pin
Hamid_RT12-May-07 7:34
Hamid_RT12-May-07 7:34 
GeneralRe: vc++ related question Pin
Mark Salsbery12-May-07 8:10
Mark Salsbery12-May-07 8:10 

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.