Embedded C++ : to use STL or not?

后端 未结 11 2110
北荒
北荒 2020-11-30 18:29

I have always been an embedded software engineer, but usually at Layer 3 or 2 of the OSI stack. I am not really a hardware guy. I have generally always done telecoms product

11条回答
  •  抹茶落季
    2020-11-30 18:58

    In addition to all comments, I would propose you reading of Technical Report on C++ Performance which specifically addresses topics that you are interested in: using C++ in embedded (including hard real-time systems); how exception-handling usually implemented and which overhead it has; free store allocation's overhead.

    The report is really good as is debunks many popular tails about C++ performance.

提交回复
热议问题