非同步結構英語怎麼說及英文翻譯
❶ specification一般有哪幾種翻譯
specification在英語中作為名詞,一種有四種翻譯:規格;規范;明細單;說明書。
英文發音:[ˌspesɪfɪˈkeɪʃn]
1、譯為:規格
例句:Troll's exclusive, personalized luggage is made to our own exacting specifications in heavy-ty PVC/ nylon.
特羅爾專用的、個性化的行李箱是按照我們自己嚴格的規格要求用耐用聚氯乙烯/尼龍材料定製的。
2、譯為:規范
A service specification is used as the contract between a service provider and a service consumer. 服務規范充當了服務提供者和服務使用者之間的協議。
3、譯為:明細單
The specification includes both a synchronous and asynchronous API. 這個明細單包括了同步和非同步API。
4、譯為:說明書
Part three of this specification details shells and utilities in particular. 這個說明書的第3部分詳細介紹了shell和工具的相關內容。
(1)非同步結構英語怎麼說及英文翻譯擴展閱讀
specification的相關詞形:
1、speciality
英文發音:[ˌspeʃiˈæləti]
中文釋義:n.特產;特色菜;專業;專長
例句:My father was a historian of repute. His speciality was the history of Germany. 我的父親是一名頗有名氣的歷史學家,他專門研究德國歷史。
2、specific
英文發音:[spəˈsɪfɪk]
中文釋義:adj.明確的;具體的;特定的;特有的;獨特的
例句:Massage may help to increase blood flow to specific areas of the body. 按摩有助於增加身體特定部位的血液流量。
❷ C語言常用詞彙及函數有那些
常用詞彙:
1、short:修飾int,短整型數據,可省略被修飾的int。
2、long:修飾int,長整型數據,可省略被修飾的int。
3、long long:修飾int,超長整型數據,可省略被修飾的int。
4、signed:修飾整型數據,有符號數據類型。
5、unsigned:修飾整型數據,無符號數據類型。
6、restrict:用於限定和約束指針,並表明指針是訪問一個數據對象的唯一且初始的方式。
7、return:用在函數體中,返回特定值(如果是void類型,則不返回函數值)。
8、continue:結束當前循環,開始下一輪循環。
9、break:跳出當前循環或switch結構。
10、goto:無條件跳轉語句。
11、if:條件語句,後面不需要放分號。
12、else:條件語句否定分支(與if連用)。
13、switch:開關語句(多重分支語句)。
14、case:開關語句中的分支標記,與switch連用。
15、default:開關語句中的「其他」分支,可選。
常用函數:
1、int isalpha(int ch) 若ch是字母('A'-'Z','a'-'z'),返回非0值,否則返回0。
2、int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或數字('0'-'9'),返回非0值,否則返回0。
3、int abs(int i) 返回整型參數i的絕對值。
4、double cabs(struct complex znum) 返回復數znum的絕對值。
5、double fabs(double x) 返回雙精度參數x的絕對值。
6、long labs(long n) 返回長整型參數n的絕對值。
❸ 英語iterable怎麼翻譯
iterable.
翻譯:可迭代對象; 可迭代; 可迭代的
短語:
Cursor will be iterable游標
Iterable value迭代值
Asynchronous iterable可非同步迭代對象
雙語例句
Handleiterationmanually, bydefiningyour ownimplementationofIterable.
手動處理遍歷,定義自己的Iterable實現。
But,just likeIterable, theEnumclassisnotpresentin theJDK1.4classlibrary.
但是,同iterable一樣,在JD K1.4類庫中也沒有enum類。
And,justlikeIterableandEnum,the valueOfmethodsarenotpresentin theJDK1.4classlibrary.
而且,就像Iterable和Enum一樣,valueOf方法在JD K1.4類庫中也不存在。