execute是一个英语单词,基本涵义是执行,实行,贯彻等。
基本介绍
- 中文名:execute
- 英式读音: ['eksɪkjuːt]
- 美式读音: ['ɛksɪkjut]
- 解释:执行;实行;处死
发音
英 ['eksɪkjuːt] 美 ['ɛksɪkjut]
释义
- 执行;实行;处死
- 履行,执行,贯彻,实行,实施;完成,实现,施行(法律等):例句: to execute another's orders
执行别人的命令
- 表演(动作):例句: to execute a gymnastic feat
表演一个体操技巧动作
- 将…处死,处决,处以极刑:例句: He was executed as a deserter.
他被作为叛逃者处决。
- (按计画或设计)作成,製成,(根据构思、草图等)製作(艺术品等):
例句与用法
·to execute a statue in marble
在大理石上作成一尊雕像
·a painting executed by an unknown artist
一幅出自无名氏艺术家之手的画
·Execute the Work Order Control appropriate System.
正确操作工作程式控制系统。
·Execute and implement necessary training programs for all employees.
执行实施全体员工必要的培训课程。
·Data execute detected. This behaviour is typical of some malicious programs.
检测到数据执行。该行为是典型的危险程式。
网路释意:
-execute: 实行,实施;执行;(执行):直接运行执行档的权力。
-Execute Cycle: 执行循环;执行周期;执行循环,执行周期执行循环。
-Boot Execute: 命令行启动项;导入并执行命令行启动项 ...项(Winlogon)、网路连结协定启动项(Winsock Providers)、印表机监视启动项(Print Monitors)、命令行启动项(Boot Execute)各图片浏览查看启Manager),选中它后,心后只要你按下Ctrl+ALT+Del,你就可以调出它来当你的任务管理器了。
-Execute Sequence: 执行序列执行序列 · Execute Sequence(执行序列):单击此按钮,会弹出图所示的对话框,用来对当前Video Post中的序列进行输出渲染前最后的设定。
-execute mode: 执行模式执行模式完整支援 AGP4X/2X 规格,在AGP4X 模式下支援快速写入(Fast Writes)和执行模式(Execute Mode),让您的电脑发挥强大的效能!
-execute store: 执行储存器;执行存储器执行储存器
-Execute program: 执行程式;执行程式。这是个相当重要和有用的命令,我们可以通过此命令调用系统中的各种程式。
例句
Execute the script at least once on all the nodes. 在所有节点上至少执行此脚本一次。
We execute that instruction, we move to the next one. 我们执行那个指令,我们继续下一轮。
However, if you cannot have the same partitions in test as in production, then use this information from the node where you execute the query in production andthen use this information on test. 然而,如果测试中无法具有与生产中相同的分区,那幺就从生产中执行该查询的节点中收集该信息,然后在测试中使用该信息。
Execute 方法 (计算机中vb脚本编程用法)
在vbs中的解释以及用例
对指定的字元串执行正则表达式搜寻。
object.Execute(string)
参数
object
必选项。总是一个 RegExp 对象的名称。
string
必选项。要在其上执行正则表达式的文本字元串。
说明
正则表达式搜寻的设计模式是通过 RegExp 对象的 Pattern 来设定的。
Execute 方法返回一个 Matches 集合,其中包含了在 string 中找到的每一个匹配的 Match 对象。如果未找到匹配,Execute 将返回空的 Matches 集合。
用例:
Function RegExpTest(patrn, strng)
Dim regEx, Match, Matches ' Create variable.
Set regEx =New RegExp ' Create a regular expression.
regEx.Pattern =patrn ' Set pattern.
regEx.IgnoreCase =True ' Set case insensitivity.
regEx.Global =True ' Set global applicability.
Set Matches =regEx.Execute(strng) ' Execute search.
For Each Match in Matches ' Iterate Matches collection.
RetStr =RetStr & "Match found at position "
RetStr =RetStr & Match.FirstIndex & ". Match Value is '"
RetStr =RetStr & Match.Value & "'." & vbCrLf
Next
RegExpTest =RetStr
End Function
MsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))
Dim regEx, Match, Matches ' Create variable.
Set regEx =New RegExp ' Create a regular expression.
regEx.Pattern =patrn ' Set pattern.
regEx.IgnoreCase =True ' Set case insensitivity.
regEx.Global =True ' Set global applicability.
Set Matches =regEx.Execute(strng) ' Execute search.
For Each Match in Matches ' Iterate Matches collection.
RetStr =RetStr & "Match found at position "
RetStr =RetStr & Match.FirstIndex & ". Match Value is '"
RetStr =RetStr & Match.Value & "'." & vbCrLf
Next
RegExpTest =RetStr
End Function
MsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))