这句话是什么意思 [英] what is mean this statements

查看:72
本文介绍了这句话是什么意思的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

get_threshold();
&



ABC_GetAllAxis();



ABC_GetAllAxis();

推荐答案

get_threshold和ABC_GetAllAxis是标识符

()是函数调用运算符

;是语句终止符


所以:

get_threshold();


是对名为"get_threshold"和
的函数的调用
ABC_GetAllAxis();


是对名为"ABC_GetAllAxis"的函数的调用


如果不检查定义这些功能的源代码,就无法确定它们的实际作用.
get_threshold and ABC_GetAllAxis are indentifiers

() is the function call operator

; is the statement terminator


so:

get_threshold();


Is a call to the function named "get_threshold" and

ABC_GetAllAxis();


Is a call to the function named "ABC_GetAllAxis"


What they actually do can not be determined without examining the source code that defines those functions.


这篇关于这句话是什么意思的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆