英文字典中文字典


英文字典中文字典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?
  • makefile - Declare all targets PHONY - Stack Overflow
    Consider a long makefile with numerous targets, all of which are PHONY (meaning that the target name does not represent an existing file) I can do either: PHONY: a a: do someting a PHONY:
  • How should you use . PHONY in included Makefiles?
    The statement PHONY: rule1 tells Make that it should not consider "rule1" the name of a file to be built Suppose you put it in the Makefile What happens when you run another makefile, either foo mk or a makefile that includes it? When you run the rule1 rule, do you want Make to treat it as a PHONY target? If your answer isn't "that depends on which makefile I'm using", then you should have
  • . 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
  • Makefile : . PHONY on multiple targets - Stack Overflow
    In a well refined Makefile, it's recommended to mark non-generated targets as PHONY Now, the process is pretty simple : suppose there is target1 that must be run any time it's invoked, irrespecti
  • linux - Phony targets in makefile - Stack Overflow
    PHONY tells GNU make the "all" target is phony - you don't REALLY intended for a file called "all" to be created and it should build the dependencies regardless if a file called "all" exists or not Added later: My example with all and prog1 above was not correct although the general idea is true Here is a much simple example all: prog prog
  • ¿Qué significa el . PHONY en los Makefiles?
    Me he encontrado muchas veces con esto: PHONY al final de los archivos Makefile y quisiera saber qué significa Yo he usado Makefiles pero nunca he necesitado agregar eso Un ejemplo concreto de
  • makefile - NMake . PHONY analogue - Stack Overflow
    For those who are seeking for a way around this absent PHONY in nmake: You may introduce a target which would definitely be a pseudotarget (i e choose a name not matching any of the existing files directories) and make it a dependent of what you mean to be a PHONY E g : test: phony dir b phony: And here's the output: D:\Temp\nmake-phony>nmake Microsoft (R) Program Maintenance Utility
  • 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
  • How do you force a makefile to rebuild a target? - Stack Overflow
    Second, it says "phony target should not be a prerequisite of a real" - well, what if it is? The original question, did not specify if it is or it is not The correct answer, is, not to declare your targets to be phony, but rather, declare an additional phony target, and then, depend the targets you want rebuilt, on that





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