词条 | out |
释义 | 1 英文单词out,英文单词,作为形容词时表示外面的,下台的,出局的。另有JSP中的隐藏对象out,网络用语“你out了”,表示“你落伍了”。 out 1.adj. out:出的意思 2.adv. out在外, 出声地, 显露出来地, 明显地, 从头至尾地 3.n. out外面, 外出, 外观 4.vt. out赶出, 击倒, 使退场 vi. 5.out外出, 暴露 prep. 6.out通过 英英解释:名词out: 1. (baseball) a failure by a batter or runner to reach a base safely in baseball 动词out: 1. to state openly and publicly one's homosexuality 同义词:come out of the closet, come out 2. reveal (something) about somebody's identity or lifestyle 3. be made known; be disclosed or revealed 同义词:come out 形容词out: 1. not allowed to continue to bat or run 同义词:retired 2. being out or having grown cold 同义词:extinct 3. not worth considering as a possibility 4. out of power; especially having been unsuccessful in an election 5. excluded from use or mention 同义词:forbidden, prohibited, proscribed, taboo, tabu, verboten 6. directed outward or serving to direct something outward 7. no longer fashionable 8. outside or external 9. outer or outlying 10. knocked unconscious by a heavy blow 同义词:knocked out, kayoed, KO'd, stunned 副词out: 1. away from home 2. from one's possession 同义词:away 习惯用语 all out 竭尽全力, 鼓足干劲 (=all in)精疲力竭 at outs (与某人)不和, (与某人) 意见不一致 at outs with sb. (与某人)不和, (与某人) 意见不一致 on the outs (与某人)不和, (与某人) 意见不一致 on the outs with sb. (与某人)不和, (与某人) 意见不一致 be out 错误 不在家 be out and about (病后)能起床走动 be out at(the knees) (裤子)(在膝部)破了 be down and out 落魄; 败落 be out for 力图要; 一心为 be out to do sth. 企图做某事 cross out 注销, 删去 from out (of) 从...中来 from out to out 从一端到另一端; 全部的外形长度 from this out [美、口]从此以后, 今后 make a poor out 不成功, 搞得不很好 on the outs [美俚]闹翻了脸, 感情不好 out and away 在远方, 遥远; 无可比拟地 out and home 往返, 来往 out and in 进进出出; 内外; [废]里里外外; 充分地 out from under 脱离危难 out here (老远)到这里 out of 在...外; 从里面; 由于; 缺乏, 放弃; 丧失; 在...范围外; 用...制成; 来自; 与...不相宜, 不相称; 离开, 脱离 out of it 未被邀请; 在局外; 被冷落; 不加入; 孤独; 困窘; 脱节; 弄错, 不熟悉情况; 胡乱猜测; 未被牵连在内 out of keeping (和周围)不调和 out there 向那边; [口]到战场 out with [口]把...赶出去; 说[拿]出(Out with him! [古]赶他出去! 叫他滚蛋! Out with it! 把它拿走! 说出来吧! 讲讲看!) 2 无线电用语over在美国的无线电通话中。意思为,“完毕(请回话)” 当一方通话完毕并且不需要对方答复时,使用out. 类似的: Over:需要对方回应 Out:结束通话,对方无须回应 Roger:表示了解对方的话,与“copy”和“收到”同义 Wilco (读作Will Ko):英文will comply(将会执行)的缩写 Affirmative:等同于“Yes” Negative:等同于“No” Wrong/Correction:表示刚才的信息有误 Message:要求对方笔录 Wait Out:通话暂停,稍后继续 引用Call of Duty : Modern Warfare 2 的对话: NORAD HQ: Sand Bravo. We are reading 70 bogeys in your sector. Please verify. Nome AFB: Very funny, Station. That’s a big negative, over. 意思为: 北美防空总部:SAND BRAVO(军用代号),我们在你们区域中读取到70多个不明飞行物,请查实。 AFB:太搞笑了,指挥站,给你个大大的“不”,完毕。(此处完毕说明要求对方回复,所以就有了下面的东西) NORAD HQ: Sand Bravo, be advised, running diagnostics to scan for malfunction. Nome AFB: The skies are clear, Station. You got yourself some phantom dots, over. NORAD HQ: Zulu X-ray 6. Signs in your sector of some 100 bogeys, please advise. 再用COD4的一句话: The loyalist team in this area may be able to asist , but we ... cannot confirm at this time,baseplate out. 意思为: 该地区的皇家部队可能可以前往进行支援,但我们现在无法确认,通话结束。 此处的通话结束,就是不再讲话了,所以后面才能听到GAZ大骂. 3 电脑专业术语◎ 说明[JSP] JSP中的隐藏对象 -- out- - out隐含对象在转换为Servlet之后,对应于JspWriter型态对象,JspWriter直接继承自java.io.Writer. out常用函数: clear():将缓冲区的内容清除,但不把数据写到客户端。 clearBuffer():将缓冲区的内容清除,并且把数据写到客户端。 close():关闭输出流。 flush():直接出清缓冲区的内容,输出到客户段。 getBufferSize(), 获得缓冲区的大小。 getRemaining(), 获得缓冲区剩余空间的大小。 isAutoFlush(),根据page指令的isAutoFlush,返回一个布尔类型的值。 newLine(),输出一个换行符。 print():将指定的数据以字符的方式传送至客户端,不换行。 println():将指定的数据以字符的方式传送至客户端,并换行。 ◎ 例子可以使用page指令元素的autoFlush来设定JSP页面是否使用缓冲区自动出清功能: 如果使用缓冲区自动出清,则在缓冲区满之前,或是使用flush()之前不会建立PrintWriter对象来对客户端进行输出; 如果不使用缓冲区自动出清,则写入out(JspWriter)对象的数据会直接写入PrintWriter对象,然后在指定flush()之后输出至客户端。 ◎ 注意1、如果您将autoFlush设定为false,则您必须明确的使用flush()来输出数据,否则缓冲区满了的话,就会发生IOException例外; 2、使用缓冲区有其好处,会有响应延迟的问题,如果要实时性将结果响应至客户端,则可以关闭缓冲区。 4 网络语言你out了=你落伍了 跟不上潮流了! out是简写,原为“out of time”时间之外,即不合时间也就是落伍 5 C#中的outout关键字会导致参数通过引用来传递。这与 ref关键字类似,不同之处在于 ref要求变量必须在传递之前进行初始化。若要使用 out参数,方法定义和调用方法都必须显式使用 out关键字。例如: class OutExample { static void Method(out int i) { i = 44; } static void Main() { int value; Method(out value); // value is now 44 } } 尽管作为 out参数传递的变量不需要在传递之前进行初始化,但需要调用方法以便在方法返回之前赋值。 ref和 out关键字在运行时的处理方式不同,但在编译时的处理方式相同。因此,如果一个方法采用 ref参数,而另一个方法采用 out参数,则无法重载这两个方法。例如,从编译的角度来看,以下代码中的两个方法是完全相同的,因此将不会编译以下代码: class CS0663_Example { // compiler error CS0663: "cannot define overloaded // methods that differ only on ref and out" public void SampleMethod(out int i) { } public void SampleMethod(ref int i) { } } 但是,如果一个方法采用 ref或 out参数,而另一个方法不采用这两类参数,则可以进行重载,如下所示: class RefOutOverloadExample { public void SampleMethod(int i) { } public void SampleMethod(out int i) { } } 备注 属性不是变量,因此不能作为 out参数传递。 示例 当希望方法返回多个值时,声明 out方法很有用。使用 out参数的方法仍然可以将变量用作返回类型(请参见 return),但它还可以将一个或多个对象作为 out参数返回给调用方法。此示例使用 out在一个方法调用中返回三个变量。请注意,第三个参数所赋的值为 Null。这样便允许方法有选择地返回值。 复制 class OutReturnExample { static void Method(out int i, out string s1, out string s2) { i = 44; s1 = "I've been returned"; s2 = null; } static void Main() { int value; string str1, str2; Method(out value, out str1, out str2); // value is now 44 // str1 is now "I've been returned" // str2 is (still) null; } } |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。