General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
TheEVEInspiration
Developer Voices
comments
Comments by "TheEVEInspiration" (@TheEVEInspiration) on "Advanced Memory Management in Vale (with Evan Ovadia)" video.
In the 90s I always did "transactional" programming, using C++ very strict lifetimes of objects on the stack. Things go out of scope? Fine, then deallocate automatically, no coding required. And it does not matter how deep or complex the execution pathways are. It does not have to be stack memory based, but the control of flow does control the memory claim lifetime. This simplified code a lot and memory management too as most memory use is very temporary.
3
Why not just use a "pure" keyword onto variables that imply some restrictions on what you can do with that reference? No need to "declare" regions then.
2
@AdrianBoyko These days I stick to what I need to work with, so I miss out on some neat ideas no doubt. But even if I see them, they would not be usable for me in my job. Great that people are trying to make things better however.
1