问题描述
我想要找到有关嵌入式平台中的C ++编程的信息。
我googled它,但我无法找到关于该主题的足够的信息。我想要找到的是C ++在嵌入式环境中的有效性,详细的描述和示例(如果可用)
任何人都可以建议任何链接或任何我会推荐阅读有关嵌入式C的书籍,例如
由Michael J.Pont于2002年出版的嵌入式C ,或者由Michael Barr在1999年编写的C&C ++嵌入式系统 ()。简单来说,所有嵌入式系统都是使用C /汇编程序启动的。 C ++也可以使用,但是使用距离非嵌入式C ++还不远(唯一的区别通常是不喜欢RTTI,异常等等很重的功能)。
$ b $查看嵌入式平台/操作系统相关书籍/指南/示例可能会更有用。
I want to find information on "C++ programming in an embedded platfrom".I googled it but I was unable to find sufficient information on that topic. What exactly I want to find is How exactly C++ is useful in an embedded environment with detailed description and examples (if they are available)
Can anyone please suggest any links or any free ebook downloads if I can get ?
I would recommend reading books related to embedded C, for example Embedded C by Michael J.Pont, 2002 or Programming Embedded Systems in C and C++ by Michael Barr, 1999 (http://book.opensourceproject.org.cn/embedded/embeddedc/).
In a nutshell, all embedded systems are started with C/assembler. C++ can be used also, but usage is not far from "non-embedded C++" (the only difference usually is that lots of heavy features like RTTI, exceptions, etc are deprecated).
BTW, it might be more useful to look at the your embedded platform/OS related books/guides/examples.
这篇关于在哪里可以找到嵌入式C ++的信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!