envoy 音標拼音: ['ɛnvɔɪ] ['ɑnvɔɪ]
n . 外交使節,特使
外交使節,特使
envoy n 1 :
a diplomat having less authority than an ambassador [
synonym :
{
envoy }, {
envoy extraordinary }, {
minister plenipotentiary }]
2 :
someone sent on a mission to represent the interests of someone else [
synonym : {
emissary }, {
envoy }]
3 :
a brief stanza concluding certain forms of poetry [
synonym :
{
envoy }, {
envoi }]
Envoy \
En "
voy \,
n . [
F .
envoy ['
e ]
envoy ,
fr .
envoyer to send ;
pref .
en - (
L .
in )
voie way ,
L .
via :
cf .
F .
envoi an envoy (
in sense 2 ).
See {
Voyage },
and cf . {
Invoice }.]
1 .
One dispatched upon an errand or mission ;
a messenger ;
esp .,
a person deputed by a sovereign or a government to negotiate a treaty ,
or transact other business ,
with a foreign sovereign or government ;
a minister accredited to a foreign government .
An envoy '
s rank is below that of an ambassador .
[
1913 Webster ]
2 . [
F .
envoi ,
fr .
envoyer to send .]
An explanatory or commendatory postscript to a poem ,
essay ,
or book ; --
also in the French from ,
l '
envoi .
[
1913 Webster ]
The envoy of a ballad is the "
sending "
of it forth .
--
Skeat .
[
1913 Webster ]
44 Moby Thesaurus words for "
envoy ":
agent ,
ambassador ,
ambassadress ,
apostolic delegate ,
attache ,
bearer ,
career diplomat ,
carrier ,
chancellor ,
charge ,
commercial attache ,
commissar ,
commissary ,
commissionaire ,
commissioner ,
consul ,
consul general ,
consular agent ,
councillor ,
courier ,
delegate ,
diplomat ,
diplomatic ,
diplomatic agent ,
diplomatist ,
emissary ,
envoy extraordinary ,
foreign service officer ,
herald ,
internuncio ,
legate ,
messenger ,
military attache ,
minister ,
minister plenipotentiary ,
minister resident ,
nuncio ,
plenipotentiary ,
representative ,
resident ,
secretary ,
secretary of legation ,
vice -
consul ,
vice -
legate {
Motorola }'
s integrated personal wireless communicator .
Envoy
is a {
personal digital assistant }
which incorporates two -
way
wireless and wireline communication .
It was announced on 7
March 1994 and released in the third quarter of 1994 .
It runs
{
Genral Magic }'
s {
Magic Cap } {
operating system }
and
Telescript (
TM )
communications language on Motorola '
s {
Dragon }
chip set .
This includes the highly integrated {
Motorola
68349 }
processor and a special purpose {
application specific
integrated circuit } (
ASIC )
referred to as Astro .
This chip
set was designed specifically for {
Magic Cap }
and
{
Telescript }.
A user can write on the Envoy communicator with the
accompanying stylus or a finger ,
to type and select or move
objects on its screen .
An on -
screen keyboard can be used to
input information ,
draw or write personal notations ,
or send
handwritten messages and faxes .
Envoy can send a wireless message to another Envoy , {
PC }
or
fax ;
broadcast a message to a group ,
with each member of that
group receiving the message in their preferred format ;
gather
information based on your requirements ;
schedule a meeting and
automatically invite attendees ;
screen ,
route and organise
messages ;
send a business card to another Envoy across a
conference room table ;
access real -
time scheduling and pricing
information for US airline flights ,
then order tickets via fax
or {
electronic mail };
keep track of contacts through an
address book ;
receive daily news summaries and stock
information ;
capture ,
organize and review business and
personal expenses on -
the -
go ;
gather ,
edit and analyze
information in spreadsheets and graphs compatible with {
Lotus
1 -
2 -
3 }
and {
Excel };
shop in an electronic mall .
{(
http ://
motorola .
com /
MIMS /
WDG /
Technology /
Envoy /)}.
[
Was it released in Q3 '
94 ?]
(
1995 -
01 -
18 )
ENVOY ,
international law .
In diplomatic language ,
an envoy is a minister of the second rank ,
on whom his sovereign or government has conferred a degree of dignity and respectability ,
which ,
without being on a level with an ambassador ,
immediately follows ,
and among ministers ,
yields the preeminence to him alone .
2 .
Envoys are either ordinary or extraordinary ;
by custom the latter is held in greater consideration .
Vattel ,
liv .
4 ,
c .
6 ,
Sec .
72 .
安裝中文字典英文字典查詢工具!
中文字典英文字典工具:
複製到剪貼板
英文字典中文字典相關資料:
Using switch statement with a range of value in each case? It's possible to group several conditions in the same case statement using the mechanism of fall through allowed by switch statements, it's mentioned in the Java tutorial and fully specified in section §14 11 The switch Statement of the Java Language Specification The following snippet of code was taken from an example in the tutorial, it calculates the number of days in each month
Java switch use case - Stack Overflow A Java switch expression is a switch statement which can return a value The only use case I found (before Java 12) where switch may be useful is returning different values from a small closed set of cases, e g :
java - Whats the intended use of IllegalStateException . . . - Stack . . . The "Java application" is the one you write, and you can use IllegalStateException there (either directly or because you're using Guava, for example) Where's the discrepancy?
java - Is there a way to do switch expression fallthrough with lambda . . . Is there a way to do switch expression fallthrough with lambda-like syntax for default case? Ask Question Asked 4 years ago Modified 2 years, 6 months ago
java - Switch expression with help of arrow (- gt;), and now can yield . . . Java 14 introduced switch expressions with the arrow (->) syntax, but this change was mainly for better readability, safety, and cleaner code, not for performance improvements The new switch expression allows a switch to directly return a value and avoids common mistakes like accidental fall-through because break is no longer needed
In a switch statement, why are all the cases being executed? Nothing is gained by inlining the switch statement, you should have just kept the getOrdinal method separate and had your code call it Try passing 11, 12, or 13 to your code
Why cant your switch statement data type be long, Java? Here's an excerpt from Sun's Java tutorials: A switch works with the byte, short, char, and int primitive data types It also works with enumerated types (discussed in Classes and Inheritance) an
java - switch expression cant be float, double or boolean - Stack Overflow Why doesn't the switch expression allow long, float, double or boolean values in Java? why is only int (and those that are automatoically promoted to int) allowed?
Usage of switch statement in Java - Stack Overflow This allows you to control what happens if any but valid values hit the switch To answer your question, you can just add a break statement in default that does nothing but exit the switch