The C++ standard for the F-35 Fighter Jet [video]
1–10 of 451 posts
Re: The C++ standard for the F-35 Fighter Jet [video]
#2TL;DR
- no exceptions
- no recursion
- no malloc()/free() in the inner-loop
Re: The C++ standard for the F-35 Fighter Jet [video]
#3[flagged]
Re: The C++ standard for the F-35 Fighter Jet [video]
#4TL;DR - no exceptions - no recursion - no malloc()/free() in the inner-loop
i.e. standard practice for every C++ code base I've ever worked on
Re: The C++ standard for the F-35 Fighter Jet [video]
#5Do avionics in general subscribe to MISRA C/C++ or do they go even further with an additional (or different) approach?
Re: The C++ standard for the F-35 Fighter Jet [video]
#6Re: The C++ standard for the F-35 Fighter Jet [video]
#7Do avionics in general subscribe to MISRA C/C++ or do they go even further with an additional (or different) approach?
coding standard is a part of the story. mainly it comes down to level of rigor and documenting process and outcomes for audit ability. DO-178c
Re: The C++ standard for the F-35 Fighter Jet [video]
#8For those interested, the F-35 (née Joint Strike Fighter) C++ coding standards can be found here, all 142 pages of it:
Re: The C++ standard for the F-35 Fighter Jet [video]
#9TL;DR - no exceptions - no recursion - no malloc()/free() in the inner-loop
That’s hardly 90% of C++.