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

C / C++ / MFC

 
AnswerRe: CEdit::LineLength returning zero Pin
ForNow6-Dec-17 23:49
ForNow6-Dec-17 23:49 
GeneralRe: CEdit::LineLength returning zero Pin
Victor Nijegorodov7-Dec-17 0:39
Victor Nijegorodov7-Dec-17 0:39 
GeneralRe: CEdit::LineLength returning zero Pin
ForNow7-Dec-17 1:53
ForNow7-Dec-17 1:53 
GeneralRe: CEdit::LineLength returning zero Pin
Victor Nijegorodov7-Dec-17 8:40
Victor Nijegorodov7-Dec-17 8:40 
GeneralRe: CEdit::LineLength returning zero Pin
ForNow7-Dec-17 8:51
ForNow7-Dec-17 8:51 
GeneralRe: CEdit::LineLength returning zero Pin
Richard MacCutchan7-Dec-17 22:16
mveRichard MacCutchan7-Dec-17 22:16 
SuggestionRe: CEdit::LineLength returning zero Pin
David Crow7-Dec-17 9:47
David Crow7-Dec-17 9:47 
GeneralRe: CEdit::LineLength returning zero Pin
ForNow7-Dec-17 9:55
ForNow7-Dec-17 9:55 
GeneralRe: CEdit::LineLength returning zero The Answer is CMFCMaskEdit Class Pin
ForNow8-Dec-17 7:48
ForNow8-Dec-17 7:48 
QuestionCalling DLL method from multi-thread Pin
shakumar_215-Dec-17 23:23
shakumar_215-Dec-17 23:23 
QuestionRe: Calling DLL method from multi-thread Pin
Richard MacCutchan5-Dec-17 23:54
mveRichard MacCutchan5-Dec-17 23:54 
AnswerRe: Calling DLL method from multi-thread Pin
Victor Nijegorodov6-Dec-17 8:23
Victor Nijegorodov6-Dec-17 8:23 
QuestionWhy -nan values appear Pin
User 135094504-Dec-17 6:49
professionalUser 135094504-Dec-17 6:49 
AnswerRe: Why -nan values appear Pin
Jochen Arndt4-Dec-17 7:01
professionalJochen Arndt4-Dec-17 7:01 
AnswerRe: Why -nan values appear Pin
k50544-Dec-17 7:05
mvek50544-Dec-17 7:05 
GeneralRe: Why -nan values appear Pin
Peter_in_27805-Dec-17 12:50
professionalPeter_in_27805-Dec-17 12:50 
AnswerRe: Why -nan values appear Pin
David Crow4-Dec-17 8:58
David Crow4-Dec-17 8:58 
AnswerRe: Why -nan values appear Pin
CPallini4-Dec-17 22:26
mveCPallini4-Dec-17 22:26 
QuestionStorage Allocation Pin
ForNow3-Dec-17 6:13
ForNow3-Dec-17 6:13 
AnswerRe: Storage Allocation Pin
CPallini3-Dec-17 9:35
mveCPallini3-Dec-17 9:35 
AnswerRe: Storage Allocation Pin
jschell5-Dec-17 11:51
jschell5-Dec-17 11:51 
GeneralRe: Storage Allocation Pin
ForNow5-Dec-17 12:52
ForNow5-Dec-17 12:52 
GeneralRe: Storage Allocation Pin
jschell8-Dec-17 6:58
jschell8-Dec-17 6:58 
ForNow wrote:
The run time has it own heap I think the default heap


Modern OSes generally have at least two allocators. So in C++ the OS provides space to the app and then C++ itself manages that heap with its own allocator. Same is true for Java and C#.

ForNow wrote:
When I create my heap I’m segragting the allocations


Not sure that what that means.

An heap already represents a segregation. The C++ heap (every one I have looked at going back decades) dynamically manages blocks that it requested from the OS. Then on top of that it lays down a simple (or even complex) traditional heap. Then when you use 'new' (presuming you do not otherwise provide an allocator) it uses that existing API to request an amount of space appropriate for usage. Generally the allocation is exact to the structure.

The structure might have padding but that is intrinsic to the structure and not the allocation.
GeneralRe: Storage Allocation Pin
ForNow8-Dec-17 8:08
ForNow8-Dec-17 8:08 
GeneralRe: Storage Allocation Pin
jschell8-Dec-17 13:07
jschell8-Dec-17 13:07 

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.