Click here to Skip to main content
15,792,959 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
CPallini24-Jan-23 3:32
mveCPallini24-Jan-23 3:32 
AnswerRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
Randor 24-Jan-23 4:49
professional Randor 24-Jan-23 4:49 
GeneralRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
harold aptroot24-Jan-23 9:42
harold aptroot24-Jan-23 9:42 
QuestionRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
Randor 24-Jan-23 10:06
professional Randor 24-Jan-23 10:06 
GeneralRe: QueryThreadCycleTime, QueryProcessCycleTime: what do these number mean? Pin
harold aptroot24-Jan-23 10:26
harold aptroot24-Jan-23 10:26 
QuestionMessage Closed Pin
21-Jan-23 10:57
Member 1496877121-Jan-23 10:57 
AnswerRe: "C++ is static (language)..." Pin
Mircea Neacsu21-Jan-23 11:59
Mircea Neacsu21-Jan-23 11:59 
AnswerRe: "C++ is static (language)..." Pin
Richard MacCutchan21-Jan-23 23:06
mveRichard MacCutchan21-Jan-23 23:06 
Member 14968771 wrote:
If I have a C+_+ class and the function is defined as "static" - what is so different from function which is NOT defined as NOT static ?
A non-static member function is always called via an object reference. That is any call of the form:
C++
obj.SomeMethod(); // where obj is an instance of some class

has access to all the properties of that particular instance.
But for a static method called thus:
C++
ClassName::StaticMethod();

has no such access, and can only access static members of the class.

But I am not sure that that was your question.

Maybe some C++ learning is in order.

ps, please do not SHOUT in your messages, it is unnecessary and rude.
AnswerRe: "C++ is static (language)..." Pin
jschell22-Jan-23 9:17
jschell22-Jan-23 9:17 
QuestionCan you make a serial port hooking program? Pin
Member 1590067020-Jan-23 22:07
Member 1590067020-Jan-23 22:07 
AnswerRe: Can you make a serial port hooking program? Pin
Richard MacCutchan20-Jan-23 23:10
mveRichard MacCutchan20-Jan-23 23:10 
AnswerRe: Can you make a serial port hooking program? Pin
CPallini21-Jan-23 4:00
mveCPallini21-Jan-23 4:00 
AnswerRe: Can you make a serial port hooking program? Pin
jschell22-Jan-23 9:23
jschell22-Jan-23 9:23 
AnswerRe: Can you make a serial port hooking program? Pin
charlieg28-Jan-23 9:58
charlieg28-Jan-23 9:58 
QuestionMessage Closed Pin
18-Jan-23 8:36
Member 1496877118-Jan-23 8:36 
AnswerRe: foreach() ?? Pin
Mircea Neacsu18-Jan-23 8:41
Mircea Neacsu18-Jan-23 8:41 
AnswerRe: foreach() ?? Pin
CPallini18-Jan-23 8:51
mveCPallini18-Jan-23 8:51 
GeneralMessage Closed Pin
21-Jan-23 11:04
Member 1496877121-Jan-23 11:04 
GeneralRe: foreach() ?? Pin
jschell22-Jan-23 9:26
jschell22-Jan-23 9:26 
QuestionCRichedit and CDC Pin
ForNow18-Jan-23 3:51
ForNow18-Jan-23 3:51 
AnswerMessage Closed Pin
20-Jan-23 0:08
professionalunitedsol zain20-Jan-23 0:08 
GeneralRe: CRichedit and CDC Pin
ForNow20-Jan-23 3:24
ForNow20-Jan-23 3:24 
GeneralRe: CRichedit and CDC Pin
Richard MacCutchan20-Jan-23 3:37
mveRichard MacCutchan20-Jan-23 3:37 
GeneralRe: CRichedit and CDC Pin
ForNow20-Jan-23 4:09
ForNow20-Jan-23 4:09 
QuestionHeap Corruption Durning Streamin Pin
ForNow16-Jan-23 9:09
ForNow16-Jan-23 9:09 

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.