When is it appropriate to use C as object oriented language?

前端 未结 3 1105
不思量自难忘°
不思量自难忘° 2021-02-06 13:27

There are a lot of excellent answers how can one simulate object oriented concepts with C. To name a few:

  • C double linked list with abstract data type
  • C a
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-06 13:50

    I'll give you the one reason I know of because it has been the case for me:

    When you are developing software for a unique platform, and the only available compiler is a C compiler. This happens quite often in the world of embedded microcontrollers.

提交回复
热议问题