网站首页  词典首页

请输入您要查询的英文单词:

 

单词 Erlang
释义

Erlang

美 [??rlæ?]
英 [??:læ?]
  • n.厄兰话务单位;占线小时;厄伦格
  • 网络话务量;爱尔兰;编程指南
复数:erlangs  
n.
1.
厄兰话务单位
2.
占线小时
3.
厄伦格

例句

释义:
1.
PHP is used for the front-end, Erlang is used for Chat, Java and C are also used in several places (and perhaps other languages as well).
PHP用于前端,Erlang用于聊天,Java和C 也用在一些地方(也许还有其他语言)。
news.cnblogs.com
2.
Functions in Erlang are the basic building blocks of any program, just as with any other language.
与其他语言一样,Erlang中的函数是所有程序的基本组成部分。
www.ibm.com
3.
After a small amount of experimentation I was able to make Erlang talk to a web page using pure asynchronous message passing.
在经过了一些试验以后,我可以让Erlang和一张Web网页通过纯异步消息传输进行通信。
www.infoq.com
4.
Single assignment in this means that if you want to calculate the result of a value you must assign it to a new variable (see Listing 30).
在Erlang中,只能赋值一次意味着:如果希望向计算某个值的结果,则必须将它赋值给新的变量(参见清单30)。
www.ibm.com
5.
Floats in Erlang are used to represent real numbers, and can be expressed naturally, as shown in Listing 7.
在Erlang中,会使用浮点数代表实数,并且可以自然地表达浮点数,参见清单7。
www.ibm.com
6.
In Erlang, you separate these statements using a semicolon, so the basic Fibonacci function can be defined as shown in Listing 2.
在Erlang中,使用分号分隔语句,所以可以用清单2所示的代码定义基本Fibonacci函数。
www.ibm.com
7.
In Erlang the last line of a function is the implied return value (just like Ruby) and it always ends in a period.
在Erlang中,函数的最后一行默认成为函数的返回值(和Ruby一样),并且总是以句号结尾。
www.infoq.com
8.
Writing an application in Erlang involves writing actual modules, not just the expressions shown in the interactive shell.
用Erlang编写应用程序需要编写模块,而不只是编写交互式shell中看到的表达式。
www.ibm.com
9.
Erlang has no shared memory, and in it all state is immutable.
Erlang无共享内存,且其中的所有状态都是不变的。
www.ibm.com
10.
In an object oriented programming language these rules would most likely be modeled by a list of instances; in Erlang we use functions.
在面向对象编程语言里,我们大概会用一组对象实例来给这些规则建模;而在Erlang里,我们用函数。
www.infoq.com
1.
In particular Erlang is thought to be a natural programming language for multicore processors.
特别是人们把Erlang看作是多核处理器下的一种自然编程语言。
www.infoq.com
2.
Erlang does not support the idea of a string directly, although you can use a double quoted value to create a string value (see Listing 18).
Erlang不直接支持字符串的概念,但是可以使用带双引号的值创建字符串值(参见清单18)。
www.ibm.com
3.
Erlang is now available as an open source system that runs on most computing platforms.
现在Erlang是运行在大部分计算平台上的开源系统。
www.ibm.com
4.
In Erlang there is no need for loops because tail recursive functions are transparently optimized to run in constant space.
而在Erlang中不需要使用循环,因为尾递归函数会被自动优化在固定的空间中运行。
www.infoq.com
5.
The increase of large scale production systems written in Erlang is bound to grow dramatically in coming years.
在今后几年,使用Erlang编写的大型生产系统会急剧增加。
www.ibm.com
6.
To set the name when using Erlang from the command line you can use the sname command line option (see Listing 3).
为了在使用Erlang时通过命令行设置名称,您可以使用sname命令行选项(请参见清单3)。
www.ibm.com
7.
Our DSL exists in an Erlang module called "dsl" , consisting of a single file called dsl. erl.
我们的DSL放在一个名为“dsl”的Erlang模块中,模块只有一个文件dsl.erl。
www.infoq.com
8.
If you now start up another instance of the Erlang shell, you can set a different a different name, as shown in Listing 4.
如果启动Erlangshell的另外一个实例,可设置另外一个不同的名称,如清单4所示。
www.ibm.com
9.
This control structure is an 'if' statement represented by a concrete list of plain Erlang terms.
这个控制结构是由一系列具体限制条件组成的一个“if”语句。
www.infoq.com
10.
An Erlang developer is not tasked with the responsibility of manual memory management with keywords like "for" or "while" or "do" .
Erlang开发者不需要承担手工管理内存的责职,可以远离“for”、“while”、“do”这些关键字。
www.infoq.com
1.
In Erlang, things are different, and it happens to be different in exactly the right way for the computing challenges of today.
在Erlang中,处理问题的方式不一样,这恰恰可以解决当今的计算难题。
www.ibm.com
2.
We aren't going to go into detail about the many interesting properties of an Erlang process.
我们不打算深入讲解Erlang的众多有趣特性。
www.infoq.com
3.
The authors note that Erlang is well suited to implementing the system, and that it comprises around 20, 000 lines of code.
作者们指出Erlang非常适合用来实现这个系统,它包括了大概2万行代码。
www.infoq.com
4.
Erlang takes the approach that all programs are concurrent, and that components (functions and modules) never share data.
Erlang采用了使所有程序保持并行的方法,而且组件(函数和模块)均不共享数据。
www.ibm.com
5.
Erlang also gives us programmatic access to the tokenized, parsed and abstract forms of an expression.
Erlang还允许我们编程访问经过词法分析(tokenized)、语法分析之后、抽象形式的表达式。
www.infoq.com
6.
Note how the final statement (and all statements in Erlang) is terminated by a period.
注意,最后一个语句(和Erlang中的所有语句)以句号结尾。
www.ibm.com
7.
Processes in Erlang are assumed to be small in memory, fast to start, and fast to context-switch.
Erlang中的进程内存较小,可快速启动和进行上下文切换。
www.ibm.com
8.
One of its interesting features is the actor-based concurrency support that is modeled after the Erlang programming language.
其中一个有趣特性就是基于actor的并发性支持,这一点模拟了Erlang编程语言。
www.ibm.com
9.
Chapter 17 describes Mnesia, a database management system that supports replicated databases and is built into Erlang.
第17章介绍了Mnesia,它是支持复制型数据库且内嵌入Erlang的数据库管理系统。
www.ibm.com
10.
This model is based on message passing, and is somewhat similar to the actor model used in Erlang and Scala.
这个模型建立在消息传递的基础上,并且与Erlang和Scala中的actor模型有点类似。
www.ibm.com
1.
Finally, Erlang includes built-in distributed processing, allowing components to be run on one machine while being requested from another.
最后,Erlang包含内置的分布式处理,允许在一台计算机上运行组件的同时从另一台计算机请求它们。
www.ibm.com
2.
Stone is ErLang grandfather hatoyama is the world's largest tire manufacturer company founder, mother now bridgestone for big shareholders.
鸠山外祖父石桥正二郎是世界最大轮胎制造商普利司通公司创始人,母亲现为公司大股东。
en.cnxianzai.com
3.
The second command given to the emulator spawns an anonymous function as an Erlang process and returns the process id.
给仿真器的第二行命令是产生一个匿名函数的Erlang进程,并且返回进程ID。
www.infoq.com
4.
It builds an Erlang expression in abstract form and returns an anonymous function which can dynamically evaluate it later.
它构造一种抽象形式的Erlang表达式,并返回一个匿名函数,让它以后再动态地求解。
www.infoq.com
5.
Fortunately, Erlang has a solution for this distributed programming problem too.
幸运的是,Erlang同样为这种分布式编程问题提供了解决方案。
www.ibm.com
6.
The deified dog, instigated by Erlang Shen, stole away the magic lotus lantern and had San Sheng Mu weighed down under the Huashan Mountain.
哮天犬受二郎神的指使将“宝莲灯”盗走并捉拿三圣母,将她压在华山下。
dict.ebigear.com
7.
Erlang has recently generated a lot of interest as a language that can deal both efficiently and elegantly with concurrency.
一种可以让并发兼得优美与效率的语言,最近受到了很大的关注。
www.infoq.com
8.
Erlang provides a number of standard features not found in or difficult to manage in other languages.
Erlang提供许多在其他语言中不存在或难以管理的标准特性。
www.ibm.com
9.
In 1998 Ericsson released Erlang to the open source community under a Modified MPL (Mozilla Public License).
1998年爱立信在改良的MPL(MozillaPublicLicense)许可下将Erlang发布于开源社区。
www.infoq.com
10.
The rule_to_abstract function builds and returns an Erlang control structure in abstract form.
rule_to_abstract函数构造并返回一个抽象形式的Erlang控制结构。
www.infoq.com
1.
Then, my thesis supervisor said "But you're wrong, Erlang is extremely object oriented" .
那我的论文导师就说了:“你是错的,Erlang是完全面向对象的”。
www.infoq.com
2.
Erlang is a shining example of the actor model's safer approach to concurrency.
Erlang是角色模型更安全的并发编程方法的一个杰出示例。
www.ibm.com
3.
The best way to enjoy the book is to write some Erlang code as you go.
学习该书的最好方法是在您读的过程中写一些Erlang代码。
www.ibm.com
4.
Tianquan County is located at the eastern foot of the Erlang Mountain. After crossing the mountain, we entered Tibetan-inhabited area.
四川省天全县坐落于著名的二郎山东麓,沿东西走向翻过二郎山便进入康藏地区。
www.qikan.com.cn
5.
To start using distributed programming, first you need to start Erlang and give each instance of Erlang a unique name.
为了开始使用分布式编程,首先您需要启动Erlang,为Erlang的每个实例提供一个惟一名称。
www.ibm.com
6.
I also hope people with think twice before labeling Erlang a specialist language.
我还希望人们在给Erlang贴上专家语言的标签之前能够三思。
www.infoq.com
7.
From Typesafe you have Akka that greatly simplifies the distributed processing model to give robust messaging based computing like Erlang.
Typesafe的Akka更是极大地简化了分布式处理模型,让您可以使用Erlang那样健壮的基于消息的计算。
www.infoq.com
8.
In fact, many other languages are built around objects, where Erlang is built around processes.
实际上,其他许多语言都是围绕对象构建的,而Erlang是围绕进程构建的。
www.ibm.com
9.
We will have to add support for the new Erlang R12 release, which introduced a handful of cool improvements.
我们将不得不支持新的ErlangR12版本,它引入了一些很酷的改进。
www.infoq.com
10.
Erlang actors are simply functions that execute on a process.
Erlangactors仅仅是在进程上执行的函数。
www.ibm.com
1.
The AMQP server used in this article is the RabbitMQ server written in Erlang 11.
本文中的AMQP服务器是使用Erlang11编写的RabbitMQ。
www.infoq.com
2.
Anonymous functions begin and end with keywords 'fun' and 'end' in Erlang.
在Erlang里,匿名函数以“fun”关键字起头,“end”关键字结尾。
www.infoq.com
3.
This will be used during identification so that you can send messages to a named instance of Erlang.
这样的名称将在识别过程中使用,使您能够向Erlang的命名实例发送消息。
www.ibm.com
4.
CouchDB was originally written in C , but in April 2008, the project moved to the Erlang OTP platform for its emphasis on fault tolerance.
CouchDB最初是用C 编写的,但在2008年4月,这个项目转移到ErlangOTP平台进行容错测试。
www.ibm.com
5.
Now that we have loaded our business rules and built Erlang functions for each of them, it is time to apply market data arguments to them.
现在我们加载了业务规则,也为每条规则构造好了Erlang函数,是时候把市场数据参数传给它们了。
www.infoq.com
6.
Others favor languages like Erlang, which are based on message passing and lightweight processes.
其他例如Erlang这样倍受大家偏爱的语言,是基于消息传递和轻量级进程的。
www.infoq.com
7.
Erlang has some special requirements, such as the "magic cookie" that allows two Erlang programs to communicate.
Erlang有一些特别的需求,例如允许两个Erlang程序进行通信的“魔饼”。
www.ibm.com
8.
This article went into the theory, and practice of working with Erlang, but there is much, much more to learn.
本文讨论了使用Erlang的理论和实践,但是还有很多东西要学习。
www.ibm.com
9.
The structure and format of Erlang programs is very different to most other languages.
Erlang的结构和格式与大多数其他语言有很大区别。
www.ibm.com
10.
If you're going to write Erlang programs, read Appendix A before you start.
如果您打算书写Erlang程序,那么在开始前阅读AppendixA。
www.ibm.com
1.
The language features are already being discussed in context of the development of Squeak, Python, and Erlang.
在Squeak、Python和Erlang开发环境中已经对这些语言特性进行了讨论。
www.ibm.com
2.
This talk covers how to use Erlang to implement reliable, highly- concurrent HTTP-based services using the Yaws web server.
该演讲包括如何利用Erlang来实现可靠、高度并行、基于HTTP、使用YawsWeb服务器的服务。
www.infoq.com
3.
GPars implements the actor model using many of the concepts from Erlang and Scala.
GPars使用来自Erlang和Scala的许多概念实现actor模型。
www.ibm.com
4.
A main difference between Erlang and more popular languages is that Erlang is primarily a functional programming language.
Erlang与其他流行的语言之间的主要差异是,Erlang基本上是一种函数编程语言。
www.ibm.com
5.
The second chapter tells you how to obtain and install the open source version of Erlang and make sure that it's working on your platform.
第二章告诉您如何获得并安装Erlang的开源版本,并且确保它在您的平台上能工作。
www.ibm.com
6.
This works because of a system in Erlang called pattern matching, which we will look at in more detail later.
可以这样做是因为在Erlang中有一个称为模式匹配的系统,后面会详细讨论这个系统。
www.ibm.com
7.
Once Erlang is installed, you will find "erl" in your path.
安装Erlang之后,会在路径中找到“erl”。
www.ibm.com
8.
Erlang supports basic data types such as integers, floats and more complex structures, like tuples and lists.
Erlang支持基本数据类型(比如整数和浮点数)和更复杂的结构(比如元组和列表)。
www.ibm.com
9.
What gave you the idea to create an IDE for Erlang?
是什么给了你为Erlang创造一个IDE的念头?
www.infoq.com
10.
This is not a reference manual, but a book to learn how to program using Erlang.
这不是一本参考手册,而是教您学习如何使用Erlang编程的书。
www.ibm.com
1.
Chapter 10 is a short chapter that gives you the tools you need to write distributed programs in Erlang.
第10章是向您介绍在用Erlang书写分布式程序时所需的工具的简短章节。
www.ibm.com
2.
You can use the pattern matching in Erlang so that a path on one side triggers a specific response.
您可以使用Erlang中的模式匹配,因此一端的路径可触发特定响应。
www.ibm.com
3.
If you are writing Erlang code, chances are you want to build a high availability system.
如果您在编写Erlang代码,很可能是要构建高可用的系统。
www.ibm.com
4.
Simulation Estimates of Performance Sensitivity and Their Applications in Queuing Systems With Erlang Distributions
Erlang分布排队系统的性能灵敏度仿真估计及其应用
scholar.ilib.cn
5.
Distribution and development law of geological hazards beside the line from Erlang Mountain to Kangding Town in the No. 318 National Road
国道318线二郎山西口至康定县城沿线地质灾害发育特征及治理对策
www.ilib.cn
6.
The Features and Treatment of Geologic Hazards of the West Approach of Erlang Mountain Tunnel, Chuang-Zang Road
川藏公路二郎山隧道西引道地质灾害特征及整治
service.ilib.cn
7.
The debris flow hazards of the tunnel in Erlang Mountain and its prevention
二郎山公路隧道泥石流地质灾害及防治
www.ilib.cn
8.
Analysis on quadratic stress field characters of surrounding rock in Erlang mountain highway tunnel
二郎山隧道围岩二次应力场特征分析
www.ilib.cn
9.
Study on the laws of rockburst and its forecasting in the tunnel of Erlang Mountain road
二郎山公路隧道岩爆发生规律与岩爆预测研究
www.ilib.cn
10.
The Present Situation and Developmental Prospects of Tourism Resources in the Erlang Mountain National Forest Park
二郎山国家森林公园旅游资源现状及开发前景
www.ilib.cn
1.
Application of Erlang Queuing Model in Airport Passenger Terminals
爱尔朗排队模型在旅客候机楼中的应用
www.ilib.cn
2.
Analytical Methods of Operation Forecast and Erlang in Ten Wireless Networks
业务预测与无线网话务量分析方法初探
service.ilib.cn
3.
Erlang makes concurrency easy and natural, but its syntax is poor, static, and high on ceremony
Erlang使并发简单、自然,但它的语法贫乏、静态、因循守旧。
www.infoq.com
4.
The cause and the stability evaluation of Hepinggou landslide in Erlang Mountain
二郎山和平沟滑坡成因分析及稳定性评价
www.ilib.cn
5.
Using Erlang as a scripting language or from the command line
使用Erlang作为脚本语言或从命令行执行它
www.ibm.com
6.
Your first Erlang program, a recursive Fibonacci function
第一个Erlang程序,一个递归的Fibonacci函数
www.ibm.com
7.
Experiences and Lessons From the Construction of Erlang Shan Tunnel
二郎山隧道建设中的经验与教训
www.ilib.cn
8.
The Sliding Mechanism and Treatment Measure of Longdanxi Landslide in Erlang Mountain
川藏公路二郎山龙胆溪滑坡滑动机理与整治
www.ilib.cn
9.
erl # start the Erlang emulator (similar to irb or beanshell)
$erl#启动Erlang仿真器(类似于irb或者beanshell)
www.infoq.com
10.
You will need a C compiler and the make tool to build from source (see Resources). The basic steps follow
从源代码构建Erlang需要C编译器和make工具(参见参考资料)。
www.ibm.com
1.
There are some more things to cover in a comprehensive lesson on Erlang, but let's finish off with the workhorse data type list
在全面的Erlang课程中还要讨论很多东西,但这里最终只提供了一个常用的数据类型列表示例
www.ibm.com
随便看

 

英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。

 

Copyright © 2004-2022 Newdu.com All Rights Reserved
更新时间:2024/12/25 15:14:21