英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

phony    音标拼音: [f'oni]
n. 伪造的东西,假的宝石
a. 伪造的,假的

伪造的东西,假的宝石伪造的,假的

phony
adj 1: fraudulent; having a misleading appearance [synonym: {bogus},
{fake}, {phony}, {phoney}, {bastard}]
n 1: a person who professes beliefs and opinions that he or she
does not hold in order to conceal his or her real feelings
or motives [synonym: {hypocrite}, {dissembler}, {dissimulator},
{phony}, {phoney}, {pretender}]

phoney \pho"ney\ (f[=o]"n[=e]), a. [Also spelled {phony}.]
[Compar. {phonier}; superl. {phoniest}.]
1. Imitating something superior; intended to deceive;
fraudulent; having a misleading appearance; not genuine;
false; counterfeit; fake; as, a phoney diamond; a phoney
hundred-dollar bill.

Syn: bogus, counterfeit, fake, ersatz; fraudulent; false.
[PJC]

2. Pretending to be other than one is; putting on false
appearances; insincere; hypocritical; -- of people.
[PJC]


phoney \pho"ney\ (f[=o]"n[=e]), n.
Something or someone that is phoney. [Also spelled {phony}.]
[PJC]


phony \pho"ny\ (f[=o]"n[=e]), a. [Also spelled {phoney}.]
[Compar. {phonier}; superl. {phoniest}.]
1. imitating something superior; intended to deceive;
fraudulent; having a misleading appearance; not genuine;
counterfeit; fake; as, a phony diamond; a phony
hundred-dollar bill.

Syn: phoney, bogus, counterfeit, fake.
[PJC]

2. Pretending to be other than one is; putting on false
appearances; insincere; hypocritical; -- of people.
[PJC]


phony \pho"ny\ (f[=o]"n[=e]), n.
Something or someone that is phony. [Also spelled {phoney}.]
[PJC]

241 Moby Thesaurus words for "phony":
Joseph Surface, Pecksniff, Tartuffe, actor, affected, affecter,
agent, alike, alternate, alternative, analogy, ape, aped,
apocryphal, artificial, assumed, backup, bastard, blagueur, bluff,
bluffer, bogus, brummagem, canter, certified copy, change,
changeling, charlatan, cheat, clinquant, colorable, colored,
comparison, conformist, consimilar, copied, copier, copy, copycat,
copyist, counterfeit, counterfeited, counterfeiter, cuckoo,
deceiver, deputy, dissembler, dissimulator, distorted, double,
dressed up, dummy, echo, echoer, echoist, ectype, embellished,
embroidered, equal, equivalent, ersatz, exchange, factitious,
fair copy, fair-weather friend, faithful copy, fake, faked,
fakement, faker, false, false friend, falsified, favoring, feigned,
fictitious, fictive, fill-in, following, forged, forger, forgery,
fourflusher, frame-up, fraud, garbled, ghost, ghostwriter, hoax,
hokey, hollow man, homogeneous, humbug, hypocrite, hypocritical,
icon, identical, illegitimate, image, imitated, imitation,
imitator, impersonator, impostor, junk, junky, like, likeness,
locum tenens, make-believe, makeshift, malingerer, man of straw,
man-made, mannerist, mealymouth, metaphor, metonymy, mime, mimer,
mimic, mimicked, mimicker, mock, mocker, mockingbird, monkey,
mountebank, nearly reproduced, next best thing, not unlike,
paper tiger, parrot, paste, pasticcio, pastiche, performer,
personnel, perverted, pharisee, picture, pinch, pinch hitter,
pinchbeck, plagiarist, plagiarized, playactor, poll-parrot, polly,
polly-parrot, portrait, poser, poseur, pretended, pretender,
provisional, proxy, pseudo, put-on, put-up job, quack, quacksalver,
quackster, quasi, queer, relief, replacement, representation,
representative, resemblance, resembling, reserve, reserves, ringer,
rip-off, saltimbanco, sanctimonious fraud, second string,
secondary, self-styled, semblance, sham, shammer, sheep, shoddy,
sign, similar, similitude, simulacrum, simulated, simulator,
smacking of, snide, snuffler, so-called, soi-disant,
something like, spare, spares, spoof, spurious, stand-in, stopgap,
straw man, sub, substituent, substitute, substitution, succedaneum,
suggestive of, summer soldier, superseder, supplanter,
supposititious, surrogate, swindle, symbol, synecdoche, synthetic,
temporary, tentative, third string, tin, tinsel, titivated, token,
twisted, unauthentic, understudy, ungenuine, uniform with,
unnatural, unreal, utility, utility player, vicar, vicarious,
vice-president, vice-regent, warped, whited sepulcher


请选择你想看的字典辞典:
单词字典翻译
phony查看 phony 在百度字典中的解释百度英翻中〔查看〕
phony查看 phony 在Google字典中的解释Google英翻中〔查看〕
phony查看 phony 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • What is the purpose of . PHONY in a Makefile? - Stack Overflow
    What does PHONY mean in a Makefile? I have gone through this, but it is too complicated Can somebody explain it to me in simple terms?
  • What is a Bazel analogue of `. PHONY` rules (as in GNU Make)?
    What is a Bazel analogue of PHONY rules (in GNU Make), that is targets that possibly don't create actual files in the filesystem and rebuilt whether the target exists or no? That is, how to create and to pass to Bazel an intermediary rule that does not create a target file? For example, what may be Bazel code for install rules?
  • automake - autotools extending . PHONY - Stack Overflow
    simply do it PHONY is a target (rather than a variable) and as such you don't override, but you add to it: consider the simple Makefile: default: foo bar baz @touch $^ PHONY: foo foo: @echo "foo" PHONY: bar bar: @echo "bar" baz: @echo "baz" as you can see, there are two independent PHONY definitions on the first run, this will print out "foo", "bar", and "baz" and then touch (create) 3
  • Purpose of declaring `all` as . PHONY? - Stack Overflow
    Is the only purpose of all being listed as a prerequisite of PHONY that I can still remake all three programs even if I accidentally, in the unlikely case, create a file in the same directory named all? You seem doubtful, but yes That is the only purpose served by declaring all phony in that example As the manual section you linked explains: There are two reasons to use a phony target: to
  • Организация сборки проекта через Makefile на C
    Как организовать рекурсивную сборку проекта с помощью Makefile? Может стоит изменить файловую структуру проекта? В общем интересно услышать любое мнение Модель проекта: ├── ASCII_EsqSq │ └──
  • Makefile PHONY target execution order - Stack Overflow
    Your comments about edit running multiple times are incorrect, in that make will not build any target more than once on any given run (even with -j) However, you do appear to be converting one run into multiple runs by running sub- make s in the same directory
  • Makefile execute phonytargets of a file only if file does not exists
    Is there any way I can only execute the phony dependency of a file if this file does not exist? If the file has no phony dependency it works and only executes the content of this rule But if I ad
  • . PHONY usage in makefile - Stack Overflow
    True A PHONY target can have only dependencies, without any rule In this case, make will not execute any rule, but will check if the dependencies are satisfied (and, if not, will execute their rules) Therefore, in your example, it is correct that both target1 and target2 call dostuff because it is a dependency
  • How do I include a built *. mk into Makefile more idiomatically? Also . . .
    My questions: How do I make PHONY: DEFAULT work? Is there any other way to delegate all targets to other Makefile (after building some dependencies of it) Are there any simpler and better patterns about such things that I don't know? (expect of abandoning Makefile-centric approach and embracing more high-level build system)
  • c++ - Одновременное подключение заголовков Boost thread. hpp и named . . .
    При сборке boost для windows, дабы не было разногласий в заголовочных файлах и подобных предупреждений, рекомендую добавлять дефайн BOOST_USE_WINDOWS_H Если вы собираете boost утилитой bjam exe, то к ее параметрам добавьте define=BOOST_USE_WINDOWS_H





中文字典-英文字典  2005-2009