operator 音标拼音: ['ɑpɚ
, etɚ]
n . 运算符
n . 操作员,行家,经营者,算子
运算符操作员,行家,经营者,运算元
operator 巨集运算子
operator 运算符; 操作者; 操作员; 运算符; 运算子; 操作程序; 算子
OP
operator 反或算子
operator p 作业子
operator 写给操作员( 的信息 )
WTO operator 运算子 操作员 作业员
operator n 1 : (
mathematics )
a symbol or function representing a mathematical operation 2 :
an agent that operates some apparatus or machine ; "
the operator of the switchboard " [
synonym : {
operator }, {
manipulator }]
3 :
someone who owns or operates a business ; "
who is the operator of this franchise ?"
4 :
a shrewd or unscrupulous person who knows how to circumvent difficulties [
synonym : {
hustler }, {
wheeler dealer }, {
operator }]
5 :
a speculator who trades aggressively on stock or commodity markets Operator \
Op "
er *
a `
tor \,
n . [
L .]
1 .
One who ,
or that which ,
operates or produces an effect .
[
1913 Webster ]
2 . (
Surg .)
One who performs some act upon the human body by means of the hand ,
or with instruments .
[
1913 Webster ]
3 .
A dealer in stocks or any commodity for speculative purposes ;
a speculator . [
Brokers '
Cant ]
[
1913 Webster ]
4 . (
Math .)
The symbol that expresses the operation to be performed ; --
called also {
facient }.
[
1913 Webster ]
5 .
A person who operates a telephone switchboard .
[
PJC ]
6 .
A person who schemes and maneuvers adroitly or deviously to achieve his /
her purposes .
[
PJC ]
105 Moby Thesaurus words for "
operator ":
Machiavellian ,
PBX operator ,
activist ,
actor ,
administrator ,
adventurer ,
agent ,
architect ,
author ,
ball of fire ,
beaver ,
behind -
the -
scenes operator ,
big operator ,
big wheel ,
big -
time operator ,
bustler ,
busy bee ,
central ,
coconspirator ,
conductor ,
conniver ,
conspirator ,
conspirer ,
counterplotter ,
creator ,
director ,
doer ,
driver ,
eager beaver ,
eminence grise ,
engineer ,
enthusiast ,
executant ,
executor ,
executrix ,
exploiter ,
fabricator ,
faker ,
finagler ,
fraud ,
functionary ,
gamesman ,
go -
getter ,
gray eminence ,
gunslinger ,
handler ,
human dynamo ,
hustler ,
intrigant ,
intriguer ,
kingmaker ,
lame duck ,
live wire ,
logroller ,
long distance ,
machinator ,
maker ,
man of action ,
man of deeds ,
manager ,
maneuverer ,
manipulator ,
margin purchaser ,
medium ,
militant ,
mover ,
new broom ,
operant ,
operative ,
operative surgeon ,
opportunist ,
performer ,
perpetrator ,
pilot ,
plotter ,
plunger ,
political activist ,
pork -
barrel politician ,
powerhouse ,
practitioner ,
prime mover ,
producer ,
runner ,
sawbones ,
scalper ,
schemer ,
smart operator ,
smoothie ,
speculator ,
stag ,
steersman ,
strategist ,
subject ,
superintendent ,
supervisor ,
surgeon ,
switchboard operator ,
take -
charge guy ,
telephone operator ,
telephonist ,
wheeler -
dealer ,
winner ,
wire -
puller ,
wise guy ,
worker
安装中文字典英文字典查询工具!
中文字典英文字典工具:
复制到剪贴板
英文字典中文字典相关资料:
What does the `%` (percent) operator mean? - Stack Overflow 1 That is the modulo operator, which finds the remainder of division of one number by another So in this case a will be the remainder of b divided by c
c - What does tilde (~) operator do? - Stack Overflow I recently saw the above operator in a code,I googled for it but found nothing The code is below Please describe what actually does this operator do? #include lt;stdio h gt; int main() { unsig
What does the !! (double exclamation mark) operator do in JavaScript . . . The !! operator reassures the lint tool that what you wrote is what you meant: do this operation, then take the truth value of the result A third use is to produce logical XOR and logical XNOR
Using :: (scope resolution operator) in C++ - Stack Overflow A qualified id-expression is an unqualified id-expression prepended by a scope resolution operator ::, and optionally, a sequence of enumeration, (since C++11)class or namespace names or decltype expressions (since C++11) separated by scope resolution operators
What does |= mean? (pipe equal operator) - Stack Overflow I wonder if adding something like pipe equal operator to this question or any other documentation on the topic wouldn't help people searching
syntax - What is the := operator? - Stack Overflow This is a new operator that is coming to Python 3 8 and actually had a role in BDFL Guido van Rossum's early retirement Formally, the operator allows what's called an "assignment expression"
c++ - What is the difference between the dot (. ) operator and . . . Dot operator can't be overloaded, arrow operator can be overloaded Arrow operator is generally meant to be applied to pointers (or objects that behave like pointers, like smart pointers)
How do you use the ? : (conditional) operator in JavaScript? What is the ?: (question mark and colon operator aka conditional or quot;ternary quot;) operator and how can I use it?
What are bitwise shift (bit-shift) operators and how do they work? The Operators >> is the arithmetic (or signed) right shift operator >>> is the logical (or unsigned) right shift operator << is the left shift operator, and meets the needs of both logical and arithmetic shifts All of these operators can be applied to integer values (int, long, possibly short and byte or char)