you are viewing a single comment's thread
view the rest of the comments
[–] 53 points 2 years ago (3 children)

C++ the good parts exclusively uses on stack allocation and passing by const reference without ever introducing pointers.

You know this to be true.

  • source
  • hideshow 6 child comments
  • [–] 40 points 2 years ago (3 children)

    Pointers is a pathway to memory that some consider to be… unnatural

  • source
  • parent
  • hideshow 6 child comments
  • [–] 16 points 2 years ago (2 children)

    Because its essential for application use where memory management becomes extremely vital, usually due to the rom or memory to be extremely linited in size. Worrying about memory management (something C++ makes mandatory) is something not all programmers need to care about, but having automated memory mangement is also what causes bloat that comes with modern applications, due to bad programming practices of not caring about it.

  • source
  • parent
  • hideshow 4 child comments
  • [+] 1 point 2 years ago* (last edited 2 years ago) (1 child)
  • [–] 2 points 2 years ago* (last edited 2 years ago)

    When you ever call new/malloc, its mandatory(dynamic allocation). For general programming, the size is usually decided at compilation.

    Yes destructors will unallocate the memory, but the process of writing the destructor is part of the task of memory management

    It becomes madness if you attempt to call dynamic memory outside of a class and its destructor, and hopefully the dev actually remembers to release said memory when their done.

  • source
  • parent