par 音标拼音: [p'ɑr]
n . 标准,票面价值,平均数量
a . 票面的,平常的,标准的,平价的
标准,票面价值,平均数量票面的,平常的,标准的,平价的
par n 1 : (
golf )
the standard number of strokes set for each hole on a golf course ,
or for the entire course ; "
a par -
5 hole ";
"
par for this course is 72 "
2 :
a state of being essentially equal or equivalent ;
equally balanced ; "
on a par with the best " [
synonym : {
equality },
{
equivalence }, {
equation }, {
par }]
v 1 :
make a score (
on a hole )
equal to par Par \
Par \,
n . (
Zool .)
See {
Parr }.
[
1913 Webster ]
Par \
Par \,
prep . [
F .,
fr .
L .
per .
See {
Per }.]
By ;
with ; --
used frequently in Early English in phrases taken from the French ,
being sometimes written as a part of the word which it governs ;
as ,
par amour ,
or paramour ;
par cas ,
or parcase ;
par fay ,
or parfay .
[
1913 Webster ]
Par \
Par \,
n . [
L .
par ,
adj .,
equal .
See {
Peer }
an equal .]
[
1913 Webster ]
1 .
Equal value ;
equality of nominal and actual value ;
the value expressed on the face or in the words of a certificate of value ,
as a bond or other commercial paper .
[
1913 Webster ]
2 .
Equality of condition or circumstances .
[
1913 Webster ]
3 .
An amount which is taken as an average or mean . [
Eng .]
[
Webster 1913 Suppl .]
4 . (
Golf )
The number of strokes required for a hole or a round played without mistake ,
two strokes being allowed on each hole for putting .
Par represents perfect play ,
whereas {
bogey }
makes allowance on some holes for human frailty .
Thus if par for a course is 75 ,
bogey is usually put down ,
arbitrarily ,
as 81 or 82 .
If par for one hole is 5 ,
a {
bogey }
is 6 ,
and a score of 7 strokes would be a {
double bogey }.
[
Webster 1913 Suppl .
PJC ]
{
At par },
at the original price ;
neither at a discount nor at a premium ; --
used especially of financial instruments ,
such as bonds .
{
Above par },
at a premium .
{
Below par },
(
a )
at a discount .
(
a )
less than the expected or usual quality ; --
of the quality of objects and of the performance of people ;
as ,
he performed below par in the game .
{
On a par },
on a level ;
in the same condition ,
circumstances ,
position ,
rank ,
etc .;
as ,
their pretensions are on a par ;
his ability is on a par with his ambition .
{
Par of exchange }.
See under {
Exchange }.
{
Par value },
nominal value ;
face value ; --
used especially of financial instruments ,
such as bonds .
[
1913 Webster PJC ]
Bogey \
Bo "
gey \,
n .;
pl . {
Bogeys }. [
Also {
bogie }
and {
bogy },
plural {
bogies }.]
1 .
A goblin ;
a bugbear .
Syn :
bogeyman .
[
Webster 1913 Suppl .]
I have become a sort of bogey --
a kill -
joy . --
Wm .
Black .
[
Webster 1913 Suppl .]
2 . (
Golf )
a score one stroke over par for a hole ;
formerly ,
the definition of bogey was the same as that now used for {
par },
i .
e .,
an ideal score or number of strokes ,
for each hole ,
against which players compete ; --
it was said to be so called because assumed to be the score of an imaginary first -
rate player called Colonel Bogey .
Now the standard score is called {
par }.
[
Webster 1913 Suppl .
PJC ]
3 . (
Mil .)
an unidentified aircraft ;
in combat situations ,
such craft not identified as friendly are assumed to be hostile .
[
PJC ]
103 Moby Thesaurus words for "
par ":
alike ,
asking price ,
at par ,
au pair ,
average ,
balance ,
bearish prices ,
bid price ,
book value ,
bullish prices ,
call price ,
center ,
closing price ,
coequality ,
coextension ,
commensurate ,
correspondence ,
decline ,
drawn ,
equal ,
equality ,
equalized ,
equation ,
equilibrium ,
equipoise ,
equipollence ,
equiponderance ,
equity ,
equivalence ,
equivalency ,
even ,
even stephen ,
evenness ,
face value ,
fifty -
fifty ,
fixed price ,
flash price ,
flurry ,
flutter ,
generality ,
golden mean ,
half -
and -
half ,
happy medium ,
high ,
identity ,
issue par ,
issue price ,
juste -
milieu ,
justice ,
knotted ,
level ,
levelness ,
like ,
likeness ,
low ,
market price ,
market value ,
mean ,
median ,
mediocrity ,
medium ,
middle ,
middle course ,
middle ground ,
middle point ,
middle position ,
middle state ,
middle -
of -
the -
road ,
midpoint ,
nip and tuck ,
nominal value ,
norm ,
normal ,
offering price ,
on a footing ,
on a level ,
on a par ,
on even ground ,
opening price ,
par value ,
parallelism ,
parity ,
poise ,
price ,
proportion ,
proportionate ,
put price ,
quits ,
quotation ,
quoted price ,
rally ,
rule ,
run ,
sameness ,
settling price ,
square ,
stalemated ,
standard ,
stated value ,
swings ,
symmetry ,
tied ,
via media
安装中文字典英文字典查询工具!
中文字典英文字典工具:
复制到剪贴板
英文字典中文字典相关资料:
Newest Questions - Stack Overflow Stack Overflow | The World’s Largest Online Community for Developers
What is the new keyword in JavaScript? - Stack Overflow The new keyword in JavaScript can be quite confusing when it is first encountered, as people tend to think that JavaScript is not an object-oriented programming language What is it? What problems
When to use new and when not to, in C++? - Stack Overflow New does not guarantee heap allocation and simply avoiding new does not guarantee stack allocation New is always used to allocate dynamic memory, which then has to be freed By doing the first option, that memory will be automagically freed when scope is lost
oracle database - PLSQL :NEW and :OLD - Stack Overflow Can anyone help me understand when to use :NEW and :OLD in PLSQL blocks, I'm finding it very difficult to understand their usage
C# how to create a Guid value? - Stack Overflow This produces a new guid, uses that guid to create a ShortGuid, and displays the two equivalent values in the console Results would be something along the lines of:
How do I push a new local branch to a remote Git repository and track . . . How do I: Create a local branch from another branch (via git branch or git checkout -b) Push the local branch to the remote repository (i e publish), but make it trackable so that git pull and
What is the Difference Between `new object()` and `new {}` in C#? Note that if you declared it var a = new { }; and var o = new object();, then there is one difference, former is assignable only to another similar anonymous object, while latter being object, it can be assigned to anything
What does the new keyword actually do in Java, and should I avoid . . . The new keyword does exactly what it says on the tin, it creates a brand new object, irrespective of whether one already exists It creates a new object and stuffs the reference to that object inside the variable it has been given, overwriting any previous value (object) the variable held
New site design and philosophy for Stack Overflow: Starting February 24 . . . Update April 1st, 2026 The Beta site is being retired Update February 27th, 2026 Another post discussing the changes with the Chief Product and Technology Officer is here Update February 26th,
css - Line break in HTML with \n - Stack Overflow This is to show new line and return carriage in HTML Then you don't need to do it explicitly You can do it in CSS by setting the white-space attribute pre-line value