|
|
|
|
|
by xpto123
4220 days ago
|
|
I used to use C++ in the early 2000's but have moved on to Java since then. The language was and is extremely powerful and gives a whole level of control on what is going on. But I remember having to debug core dumps due to double pointer deletes and things like that. The problem is that this happened on batch jobs that where just reading a text file with some banking data and inserting records in a couple of database tables. For me the biggest problem of C++ was that it gave a level of control to the developer that did not scale well for most day to day tasks where that control is not really needed, and just gets in the way of getting things done and risks introducing huge non-deterministic bugs. |
|