Writing New System Software
borud.no
Writing New System Software
1–10 of 158 posts
Re: Writing New System Software
#2Re: Writing New System Software
#3Re: Writing New System Software
#4What the hell is this referring to?
Re: Writing New System Software
#5Re: Writing New System Software
#6Re: Writing New System Software
#7Re: Writing New System Software
#8I think C++ is just fine. Memory management is not that hard anymore using smart pointers. I prefer that to java at any time of the night or day. Such an ugly verbose language. The buzz word laden stuff is actually quite bad. I have seen what could be rather simple systems be very unreliable and slow because of the many microservices all in their own container. Then if one is sensible enough to avoid that there is an…
I like to use raii to handle normal pointers. For many programs memory leaks can just be handled by exit, too.
Re: Writing New System Software
#9I tend to disagree. (Modern) C++ is an incredibly powerful programming language. Contrary to some other languages it gives the developer maximal freedom and does not impose a particular way of doing things on the developer.
At the point you rule out using available facilities of the language you might as well use something else.
Re: Writing New System Software
#10I think C++ is just fine. Memory management is not that hard anymore using smart pointers. I prefer that to java at any time of the night or day. Such an ugly verbose language. The buzz word laden stuff is actually quite bad. I have seen what could be rather simple systems be very unreliable and slow because of the many microservices all in their own container. Then if one is sensible enough to avoid that there is an…
Smart pointers has some overhead though, even unique_ptr. I like to use raii to handle normal pointers. For many programs memory leaks can just be handled by exit, too.