execute(英語單詞)

本詞條是多義詞,共2個義項
更多義項 ▼ 收起列表 ▲

execute是一個英語單詞,基本涵義是執行,實行,貫徹等。

基本介紹

  • 中文名:execute
  • 英式讀音: ['eksɪkjuːt] 
  • 美式讀音: ['ɛksɪkjut]
  • 解釋:執行;實行;處死
發音,釋義,網路釋意:,例句,

發音

英 ['eksɪkjuːt] 美 ['ɛksɪkjut]

釋義

  1. 執行;實行;處死
  2. 履行,執行,貫徹,實行,實施;完成,實現,施行(法律等):例句: to execute another's orders
執行別人的命令
  1. 表演(動作):例句: to execute a gymnastic feat
表演一個體操技巧動作
  1. 將…處死,處決,處以極刑:例句: He was executed as a deserter.
他被作為叛逃者處決。
  1. (按計畫或設計)作成,製成,(根據構思、草圖等)製作(藝術品等):
例句與用法
·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"))

相關詞條

熱門詞條

聯絡我們