下载应用程式
educalingo
runnable

在"英语"词典里runnable}的意思

词典

英语中RUNNABLE的发音

ˈrʌnəbəl


RUNNABLE的语法类别

noun
形容词
动词
副词
代词
介词
连词
限定词
感叹词

RUNNABLE在英语中的意思是什么?

在英语 词典里runnable的定义

字典中runnable的定义对于追逐是有好处的。


RUNNABLE押韵的英语 单词

actionable · amenable · assignable · attainable · fashionable · imaginable · interminable · objectionable · obtainable · personable · questionable · reasonable · returnable · shunnable · sustainable · tunable · unimaginable · unreasonable · unshunnable · unsustainable

RUNNABLE一样开头的英语单词

runlet · runnel · runner · runner bean · runner-up · runners-up · runnier · runniest · runniness · running · running account · running belay · running board · running bowline · running commentary · running costs · running fire · running hand · running head · running jump

RUNNABLE一样开头的英语单词

able · abominable · companionable · convenable · definable · enable · explainable · fissionable · inexpugnable · intenable · listenable · pensionable · turnable · unable · unalienable · unattainable · unexplainable · unmentionable · unquestionable · untenable · user-definable

英语近义词词典里runnable的近义词和反义词

近义词

«runnable»的25种语言翻译

翻译者

RUNNABLE的翻译

通过我们的英语多语言翻译器,找到runnable25种语言翻译

该章节所呈现的将runnable由 英语向其他语言的翻译是通过自动统计翻译获得的;在英语中基本的翻译单位是单词«runnable»。
zh

翻译者英语 - 中文

可运行
1,325 数百万发言者
es

翻译者英语 - 西班牙语

ejecutable
570 数百万发言者
en

英语

runnable
510 数百万发言者
hi

翻译者英语 - 印地语

runnable
380 数百万发言者
ar

翻译者英语 - 阿拉伯语

runnable
280 数百万发言者
ru

翻译者英语 - 俄语

работоспособной
278 数百万发言者
pt

翻译者英语 - 葡萄牙语

executável
270 数百万发言者
bn

翻译者英语 - 孟加拉语

runnable
260 数百万发言者
fr

翻译者英语 - 法语

exécutable
220 数百万发言者
ms

翻译者英语 - 马来语

Runnable
190 数百万发言者
de

翻译者英语 - 德语

lauffähig
180 数百万发言者
ja

翻译者英语 - 日语

実行可能
130 数百万发言者
ko

翻译者英语 - 韩语

실행 가능한
85 数百万发言者
jv

翻译者英语 - 印尼爪哇语

Runnable
85 数百万发言者
vi

翻译者英语 - 越南语

Runnable
80 数百万发言者
ta

翻译者英语 - 泰米尔语

runnable
75 数百万发言者
mr

翻译者英语 - 马拉地语

धावत्या
75 数百万发言者
tr

翻译者英语 - 土耳其语

çalıştırılabilir
70 数百万发言者
it

翻译者英语 - 意大利语

eseguibile
65 数百万发言者
pl

翻译者英语 - 波兰语

uruchamianego
50 数百万发言者
uk

翻译者英语 - 乌克兰语

працездатною
40 数百万发言者
ro

翻译者英语 - 罗马尼亚语

runnable
30 数百万发言者
el

翻译者英语 - 希腊语

εκτελέσιμη
15 数百万发言者
af

翻译者英语 - 布尔语(南非荷兰语)

uitvoerbare
14 数百万发言者
sv

翻译者英语 - 瑞典语

körbart
10 数百万发言者
no

翻译者英语 - 挪威语

kjørbart
5 数百万发言者

runnable的使用趋势

趋势

词语 «RUNNABLE»的使用趋势

runnable的主要搜索趋势和常见用法
用户为查找我们的英语在线词典以及单词«runnable»的最常用表达而进行的主要搜索的列表。

runnable的英语文献、引用和新闻中的使用范例

示例

«RUNNABLE»相关的英语书籍

在以下的参考文献中发现runnable的用法。与runnable相关的书籍以及同一来源的简短摘要提供其在 英语文献中的使用情境。
1
Java Distributed Computing
The choice between extending the Thread class or implementing the Runnable interface with your application objects is sometimes not an obvious one. It's also usually not very important. Essentially, the difference between the two classes is  ...
Jim Farley, 1998
2
Micro Java Game Development
Runnable interface. This interface is designed to provide a common protocol for objects that want to execute code while they are active. For example, Runnable is implemented by the Thread class. Being active simply means that a thread has ...
David Fox, Roman Verhovsek, 2002
3
Taming Java Threads
I can implement this strategy as follows: Runnable[] first_task = new Runnablel] I new Runnable(){ public void run(){ />I< do task 1, chunk 1 here */ } }, new Runnable(){ public void run(){ />I< do task 1, chunk 2 here */ } }, new Runnable(){ public ...
Allen Holub, 2000
4
Programming Constraint Services: High-Level Programming of ...
It maintains a pool of runnable threads and provides fair execution control to the pool. It controls thread transitions: the scheduler creates, suspends, wakes, and terminates threads. Thread Selection. The scheduler maintains the runnable pool  ...
Christian Schulte (Dr.-Ing), 2002
5
Learn Java for Android Development
The concurrency-oriented utilities provide executors as a high-level alternative to low-level Threads API expressions for executing runnable tasks. An executor is an object whose class directly or indirectly implements the java.util.concurrent.
Jeff Friesen, 2014
6
Java™ for Programmers
This section demonstrates how to perform concurrent tasks in an application by using Executors and Runnable objectss. Creating Concurrent Tasks with the Runnable Interface You implement the Runnable interface (of package java.lang) to ...
Paul J. Deitel, Harvey M. Deitel, 2011
7
Modern Multithreading: Implementing, Testing, and Debugging ...
class Runnable { public: virtual void* run() = 0; virtual~Runnable() = 0; }; // a function body is required for pure virtual destructors Runnable::~Runnable() {} class Thread { public: Thread(auto_ptr<Runnable> runnable_, bool isDetached = false) ...
Richard H. Carver, Kuo-Chung Tai, 2005
8
Java threads FAQ
A Thread is runnable, how does that work? A: The Thread class' run() method normally invokes the run() method of the Runnable type it is passed in its constructor. However, it is possible to override the thread's run method with your own.
Philip Shaw
9
Professional Java Native Interfaces with SWT/JFace
Jackwind Li Guojie. Thread downloadThread = new Thread() { Runnable runnable; double ratio; public void run() { int fileSize = 0; int currentDownloaded = 0; ... // Determine file size here while(currentDownloaded < fileSize) { // Download part ...
Jackwind Li Guojie, 2006
10
Leveraging Applications of Formal Methods, Verification and ...
These constant parameters are often solely read in from the RTE in a startup runnable, which is only executed once in the boot up phase of the ECU. A runtime test of a second runnable within the same SWC does not take into account the ...
Tiziana Margaria-Steffen, Bernhard Steffen, 2008

包含词语«RUNNABLE»的新条目

找出国内和国际出版社所讨论的内容,以及词语runnable在以下新条目的上下文中是如何使用的。
1
Runnable Shopping Center Features 300 Meter Running Track
On April 27, 2015, opening its doors to fitness and shopping enthusiasts alike is Japan's first runnable shopping mall. Curious what that even means? Osaka's ... «PSFK, 五月 15»
2
Most Oregon rivers will offer rafting, despite low flows; Owyhee an …
"The river is lower than normal right now but is definitely runnable,'' Brown said. "And I imagine it will be runnable all season, though it could get lower than ... «OregonLive.com, 四月 15»
3
Stack Overflow Adds Live JavaScript to Answers
Dubbed "Stack Snippets", the new feature allows otherwise static questions and answers to include runnable code in-browser, similar to JSFiddle and Plunker. «InfoQ.com, 十月 14»
4
In search of a model for modeling intelligence
Greater intelligence arises from richer, more powerful, “runnable” models that are capable of more accurate and contingent predictions about the environment. «O'Reilly Radar, 七月 14»
5
Java 8のラムダ式に慣れよう 基本概念から使用方法、ストリーム処理 …
たとえば、以前はリスト2に示すようにRunnableを定義しました。リスト2では、匿名インナー・クラス構文を使用していますが、基本的な概念を表現するコード行が過度に多く ... «ZDNet Japan, 六月 14»
6
Open digital science journal gains users
... large part of the effort of developing and maintaining ITK was dedicated to converting algorithms published in technical articles into runnable and maintainable ... «opensource.com, 六月 14»
7
Mit Runnable Codeschnipsel direkt im Browser ausprobieren
Runnable erlaubt die Ausführung von Codeschnipseln direkt im Browser. Dabei unterstützt der Service verschiedene Programmiersprachen und Frameworks. «t3n Magazin, 六月 14»
8
Wie YouTube, nur für Programmierer: Java, Dart und andere …
Kumar hat vor wenigen Monaten mit Partnern die Code-Plattform Runnable gegründet, mit dem ehrgeizigen Ziel, daraus ein „YouTube für Code“ zu machen, ... «JAXenter, 一月 14»
9
Google Brings Dart To Runnable, Gives Developers An Easy Way …
Dart, Google's JavaScript competitor, launched its 1.0 version last November. While Google's Go language has quickly caught on with developers, though, Dart ... «TechCrunch, 一月 14»
10
Runnableの上にGoogleがDart専用チャネルを作った…新言語の試用が …
数か月前にローンチしたRunnableは、YouTubeと違ってビデオではなくコード片のライブラリをホストし、しかもそれらのコードやユーザによるその編集結果は、同サイト上で ... «TechCrunch, 一月 14»
参考文献
« EDUCALINGO. Runnable [在线]. 可用 <https://educalingo.com/zh/dic-en/runnable>. 六月 2026 ».
下载educalingo应用
ZH