本文介绍了调用函数而不使用函数原型时会有什么风险的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

调用函数时,但我们不使用函数原型,请列出潜在风险


When a function is called,but we do not use function prototype,Please list of potential risks


When using the function pointer, does it produce a deadlock, does it happen?

推荐答案


  • C编译器在假定默认原型"的情况下接受该函数(它可能会生成警告消息,具体取决于选择的警告级别).
    现在,如果您幸运的话,默认原型"将适合实际的功能签名.如果您不走运,那么 编码上帝的Nemesys 会让您不胜其烦,结果不正确.
  • The C compiler accepts the function (it may generate a warning message, depending on selected warning level) assuming a ''default prototype''.
    Now, if you''re lucky, the ''default prototype'' will fit with the actual function signature. If you''re out of luck then the Coding God''s Nemesys will flame you with, at beast, incorrect results.



这篇关于调用函数而不使用函数原型时会有什么风险的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 20:34