define既能做名词也能做动词,那么你知道define做名词和动词分别都是什么意思吗?下面学习啦小编为大家带来define的英语意思解释和英语例句,欢迎大家一起学习!
define作动词的意思:
规定;使明确;精确地解释;画出…的线条
define的英语音标:
英 [diˈfain] 美 [dɪˈfaɪn]
define的时态:
现在分词: defining
过去式: defined
过去分词: defined
define的英语例句:
1. Please listen while I define your duties.
在我规定你的职责时,请仔细听好.
2. Please define the words.
请准确地解释这些字的意义.
3. It's hard to define exactly what has changed.
很难解释清楚到底发生了什么变化.
4. We define education very broadly and students can study any aspect of its consequences for society.
我们对教育的定义非常宽泛,学生们可以就其给社会带来的影响的任一方面进行研究。
5. When people are asked "What is intelligence?" they tend to reply: "I don't know how to defineit, but I can certainly recognize it when I see it."
当被问及“智力是什么”的时候,人们往往会回答说:“我不知道该如何定义它,但我见到了肯定就能认得出。”
6. Another challenge has been to define the due process interests of prisoners.
另一个挑战是界定囚犯的正当程序利益.
7. The eclecticism of the designs means it is difficult to define one overall look.
这些设计中的兼收并蓄意味着难以界定一个总体的风格。
8. We were unable to define what exactly was wrong with him.
我们说不清楚他到底哪里不对劲。
9. He was asked to define his concept of cool.
他被要求说明自己关于“酷”的定义。
10. In everyday life we use this property to define straightness.
在日常生活中我们运用这一特点来解释直线性.
11. Secondly it is necessary to define the applied load.
其次,需要确定所作用的载荷.
12. Harbage continues more specifically to define Shakespeare's ethical outlook.
哈比奇接着更具体地阐述了莎士比亚的道德观.
13. The perception of pain is still complex and remains difficult to define.
疼痛的感知至今仍认为很复杂,难以解释.
14. It is difficult to define the detection limits obtained by chelation - solvent extraction.
确定螯合 -- 溶剂萃取法所得到的检测限颇为困难.
15. You can define the excessive speed of your motor - car by a speedometer.
你可以用速测表来确定摩托车已经超速.
思考:
思考1:关于define这些定义是什么意思
提示:有的时候为了程序的通用性,可以使用#define预处理宏定义命令,它的具体作用,就是方便程序段的定义和修改。 举个例子吧,如果说你在做一个项目,这个项目的代码很长,有5000多行,而且基本上里面的同一个常量N就占了3000多行,如果说今后你要是...
思考2:c++中 define 是嘛意思
提示:#define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质,总是在此处产生一些困惑,在编程时误用该命令,使得程序的运行与预期的目的不...
思考3:define是什么意思
提示:define 英 [dɪ'faɪn] 美 [dɪ'faɪn] vt. 定义;使明确;规定 n. (Define)人名;(英)德法恩;(葡)德菲内 [ 过去式 defined 过去分词 defined 现在分词 defining ] 英文解释及例句: V-T If you define something, you show, d...
思考4:#define N 5是什么意思?
提示:这是C语言中的宏定义,意思就是用N代表5。这样的好处就是比如一个大的程序当中要用到一个MS级别的延时,如Delay_ms(N),这样的延时在程序中有很多,但是我们很有可能要根据程序的调试去适当修改N的值,那么这个时候我们只需要修改#define N 5 ...
思考5:#define后面的"\"是什么意思?
提示:1 #define后面的"\"是续行符,表示下面一行是紧接着当前行的,一般用于将十分长的代码语句分几段写(语句本身要求必须是一行)。 这段代码就和下面的一样。 #define MIB_INFO_SIZE(S) (MAX_MIB_OFFSET + sizeof(S)) 2 还可以写成如下格式,但要...