Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in memory-management

Why use integers smaller than 32bit?

Pointers to string in functions

c string memory-management

Why does C++ still have a delete[] AND a delete operator? [closed]

Is new[] faster than Win32's VirtualAlloc?

Why is std::string/std::map not encouraged to be created on the heap?

c++ memory-management stl

Why shouldn't we have dynamic allocated memory with different size in embedded system

When is it not a good idea to pass by reference?

c++ memory-management

Usefulness of ArrayList<E>.clear()?

How could this C fragment be written more safely?

C memory space and #defines

Why does .NET use so much CPU, is this a problem?

Why array values in java is stored in heap?

When to use "delete"?

c++ memory-management

why would I forbid allocation in the heap?

When to release the UIImage?

Is this the correct way to return an array of structs from a function?

Why is sizeof(bool) == sizeof(byte) in C#? [duplicate]

Any way to make this relatively simple (nested for memory copy) C++ code more efficient?

Linq Should I Return List<T> Or IEnumerable<T> When I Still May Do More Later

c# linq memory-management

Clean vector every loop iteration. What is the most memory efficient way?