- 论坛徽章:
- 0
|
使用C++的疑惑
[quote]原帖由 "alarum"][/quote 发表:
[quote]原帖由 "alarum"][/quote 发表:
OK, let's go a little bit deeper for the "new/delete" operator. As you might know, "new" operation is actually calling "malloc" to do the underlying implementation, while it also maintains a 'header' to keep track of the memory usage, this is good for memory management, but sometimes(in a rare situation), it's a overhead, especially when you are designing a real-time/system program( I think the code you attached here is actually for such purpose, otherwise, it's not a good C++ programe ). Other than that, "new" and "malloc" are almost the same(of course, "new" will trigger a constructor of the allocated object, whilc "malloc" will not, but this is out of this topic here).
One more time, as a regular C++ programer, you are encouraged to use "new/delete" insteadof "malloc/free" unless you had to do so.
Further more, I want to clarify sth. about data structure and C++/C. I don't think they have direct relation to each other, C++ or C are just used as a language to help to descript the data structure, but they are NOT part of the data structure, you can use any other language you are familiar with to do that also. Peasonally speaking, I like to use C to learn data structure.
Hope this help. |
|