convertly,convertly作为连接词

http://www.itjxue.com  2023-01-18 00:42  来源:未知  点击次数: 

谁能跟我讲讲windows编程中关于设置映象模式的四个函数

一、Windows中的映射模式

1、Windows定义映射模式的目的

经过我的综合,Windows定义映射模的目的又以下几个方面:1、不同人的使用习惯。不同国家的,不同地区,以及不同的人因为习惯喜欢用不同的度量单位,有的人人喜欢用英寸,而有的人喜欢用公制中的厘米,毫米等。其他的人又喜欢用另外一些单位。、2、使软件与硬件向分离开来。让开发的软件能够最大限度的与硬件无关。3、提供逻辑和物理的一种转换。就相当于银行的利率。

2、默认的映射模式

默认的映射模式使MM_TEXT,它使以象素为单位的。X轴向左为正,Y轴向下为正。默认的坐标原点在左上角。

3、固定比例映射模式

固定比例的映射模式有MM_LOMETRIC、MM_HIMETRIC、MM_LOENGLISH、MM_HIENGLISH、MM_TWIPS种。它们默认的坐标原点都使在左上角。其区别在于每一个逻辑单位对应的物理大小不一样。所对用的逻辑单位分别为0.1毫米,0.01毫米,0.01英寸,0.001英寸,1/1440英寸(0.0007英寸)。

4、可变比例映射模式

对于可变比例的映射模式用户可以自己定义一个逻辑单位代表的大小,其大小可以任意。也可以让这个大小随环境改变而改变。有MM_ISOTROPIC,MM_ANISOTROPIC这两种映射模式。其逻辑单位的大小等于视口范围和窗口范围的比值。两者的不同在于前者要求X轴和Y轴的度量单位必须相同,而后者没有这样的限制。

二、Windows中的几种坐标体系

1、屏幕坐标

屏幕坐标描述物理设备(显示器、打印机等)的一种坐标体系,坐标原点在屏幕的左上角,X轴向右为正,Y轴向下为正。度量单位是象素。原点、坐标轴方向、度量单位都是不能够改变的。

2、设备坐标(又称物理坐标)

设备坐标是描述在屏幕和打印机显示或打印的窗体的一种坐标体系。默认的坐标原点是在其客户区的左上角。X轴向右为正,Y轴向下为正。度量单位为象素。原点和坐标轴方向可以改变,但是度量单位不可以改变。

3、逻辑坐标

逻辑坐标是在程序中控制显示,打印使用的坐标体系。该坐标系与定义的映射模式密切相关。默认的映射模式是MM_TEXT。我们可以通过设置不同的映射模式来改变该坐标体系的默认行为。

三、逻辑坐标和设备坐标之间的转换

现有如下代码:

void CMapModeView::OnPaint()

{

CPaintDC dc(this);

//获取设备类的设置

CPoint ptOrgView,ptOrgWindow;

CSize sizeView,sizeWindow;

CString strMsg;

ptOrgView=dc.GetViewportOrg();//获取视口原点

ptOrgWindow=dc.GetWindowOrg();//获取窗口原点

sizeView=dc.GetViewportExt();//获取视口范围

sizeWindow=dc.GetWindowExt();//获取窗口范围

strMsg.Format(_T("Viewport Extent:(%d,%d),\tViewport Org:(%d,%d)\tWindow Extent:(%d,%d)\tWindow Org(%d,%d)"),

sizeView.cx,sizeView.cy,ptOrgView.x,ptOrgView.y,

sizeWindow.cx,sizeWindow.cy,ptOrgWindow.x,ptOrgWindow.y);

TRACE("%s\n",strMsg);

//设置映射模式以及原点

dc.SetMapMode(MM_TEXT);//设置映射模式

dc.SetWindowOrg(100,100);//设置窗口的坐标原点

dc.SetViewportOrg(200,200);//设置视口的坐标原点

dc.SetWindowExt(5,10);//改语句仅对可变比例映射模式有效

dc.SetViewportExt(1,1);//同上

ptOrgView=dc.GetViewportOrg();

ptOrgWindow=dc.GetWindowOrg();

sizeView=dc.GetViewportExt();

sizeWindow=dc.GetWindowExt();

strMsg.Format(_T("Viewport Extent:(%d,%d),\tViewport Org:(%d,%d)\tWindow Extent:(%d,%d)\tWindow Org(%d,%d)"),

sizeView.cx,sizeView.cy,ptOrgView.x,ptOrgView.y,

sizeWindow.cx,sizeWindow.cy,ptOrgWindow.x,ptOrgWindow.y);

TRACE("%s\n",strMsg);

//将点(300,400)从逻辑坐标体系映射到设备坐标体系。

CPoint ptMap;

ptMap=CPoint(300,400);

dc.LPtoDP(ptMap);

strMsg.Format(_T("The Orginal Point(In LP):CPoint(300,400),Convert to DP is:CPoint(%d,%d)"),

ptMap.x,ptMap.y);

TRACE("%s\n",strMsg);

//将点(300,400)从设备坐标体系映射到逻辑坐标体系

ptMap=CPoint(300,400);

dc.DPtoLP(ptMap);

strMsg.Format(_T("The Orginal Point(In DP):CPoint(300,400),Convert to LP is:CPoint(%d,%d)"),

ptMap.x,ptMap.y);

TRACE("%s\n",strMsg);

}

以上代码最后调试输出结果为:

Viewport Extent:(1,1), Viewport Org:(0,0) Window Extent:(1,1) Window Org(0,0)

Viewport Extent:(1,1), Viewport Org:(200,200) Window Extent:(1,1) Window Org(100,100)

The Orginal Point(In LP):CPoint(300,400),Convert to DP is:CPoint(400,500)

The Orginal Point(In DP):CPoint(300,400),Convert to LP is:CPoint(200,300)

按照MSDN上,函数SetWindowOrg(x,y)设定设备坐标下的点(x,y)对应于逻辑坐标的原点。SetVieportOrg(x,y)设定逻辑坐标下点(x,y)对应逻辑坐标的原点。而实际上如果同时设置了逻辑坐标和设备坐标原点的话,那么以上的说法是错误的。

在默认映射模式MM_TEXT下,一个逻辑单位对应于设备坐标下的一个象素。改变默认原点以后的坐标体系如下图所示:

(0,0) Dx,Lx (0,0)

(100,100) Lx

(200,200) Dx

.(300,400)

Dy,Ly Ly Dy

在VC中坐标系的转换和数学中的数学转化是不一样的。在这里是以距离为标准。首先看一下如何把点(300,400)如何从设备坐标转换成逻辑坐标。

在设备坐标体系下,点(300,400)与Y轴的距离为100个逻辑单位。那么所对应的逻辑坐标也要满足与逻辑坐标Y轴的距离为100个单位。又1个逻辑单位对应1个象素。所以所对应的设备坐标的X值为100+100=200。同样可以出对应的逻辑坐标的Y值为300。

按照同样的方法,我们也可以把逻辑坐标下的点(300,400)转换成设备坐标。在逻辑坐标下,点(300,400)与逻辑坐标Y轴的距离为200。那么在设备坐标体系,相应的设备坐标与设备坐标Y轴的距离也要为200。又1个逻辑单位对应1个象素,所以对应的设备坐标X值为200+200=400。同样的道理,可以求出对应的设备坐标Y值为500。

在这里,因为逻辑单位和设备单位一一对应,也可以把这个问题看作一个很简单的坐标平移问题来看。其结果是很显然的。

另外又找到一篇:

一、映射模式基本知识

当windows应用程序在其客户区绘制图形时,必须给出在客户区的位置,其位置用x和y 两个坐标表示,x表示横坐标,y表示纵坐标。在所有的gdi绘制函数中,这些坐标使用的是一 种"逻辑单位"。当gdi函数将输出送到某个物理设备上时,windows将逻辑坐标 转换成设备坐标(如屏幕或打印机的像素点)。逻辑坐标和设备坐标的转换是由映射模式决 定的。映射模式被储存在设备环境中。getmapmode函数用于从设备环境得到当前的映射模 式,setmapmode函数用于设置设备环境的映射模式。

1.逻辑坐标

逻辑坐标是独立于设备的,它与设备点的大小无关。使用逻辑单位,是实现"所 见即所得"的基础。当程序员在调用一个画线的gdi函数lineto,画出25.4mm(1英寸) 长的线时,他并不需要考虑输出的是何种设备。若设备是vga显示器,windows自动将其转化 为96个像素点;若设备是一个300dpi的激光打印机,windows自动将其转化为300个像素点。

2.设备坐标

windows将gdi函数中指定的逻辑坐标映射为设备坐标,在所有的设备坐标系统中, 单位以像素点为准,水平值从左到右增大,垂直值从上到下增大。

windows中包括以下3种设备坐标,以满足各种不同需要:

(1)客户区域坐标,包括应用程序的客户区域,客户区域的左上角为(0,0)。

(2)屏幕坐标,包括整个屏幕,屏幕的左上角为(0,0)。屏幕坐标用在wm_move消息 中(对于非子窗口)以及下面的windows函数中:createwindow和movewindow(都对于非子窗 口)、getmessage、getcursorpos、getwindowrect、windowfrompoint和setbrushorg中。用函 数clienttoscreen和screentoclient可以将客户区域坐标转换成屏幕区域坐标,或反之。

(3)全窗口坐标,包括一个程序的整个窗口,包括标题条、菜单、滚动条和窗口框,窗 口的左上角为(0,0)。使用getwindowdc得到的窗口设备环境,可以将逻辑单位转换成窗口 坐标。

3.逻辑坐标与设备坐标的转换方式

映射方式定义了windows如何将gdi函数中指定的逻辑坐标映射为设备坐标。要继续 讨论映射方式我们要介绍windows有关映射模式的一些术语:我们将逻辑坐标所在的坐标 系称为"窗口",将设备坐标所在的坐标系称为"视口"。

"窗口"依赖于逻辑坐标,可以是像素点、毫米或程序员想要的其他尺度。

"视口"依赖于设备坐标(像素点)。通常,视口和客户区域等同。但是,如 果程序员用getwindowdc或createdc获取了一个设备环境,则视口也可以指全窗口坐标或 屏幕坐标。点(0,0)是客户区域的左上角。x的值向右增加,y的值向上增加。

对于所有映射模式,windows都用下面两个公式将窗口坐标转换成视口坐标:

xviewport=(xwindow-xwinorg)*(xviewext/xwinext)+xvieworg

yviewport=(ywindow-ywinorg)*(yviewext/ywinext)+yvieworg

其中,(xwindow,ywindows)是待转换的逻辑点,(xviewport,yviewport)是转换后 的设备点。如果设备坐标是客户区域坐标或全窗口坐标,则windows在画一个对象前,还必 须将这些坐标转换成屏幕坐标。

这两个公式使用了分别指定窗口和视口原点的点:(xwinorg,ywinorg)是逻辑坐标 的窗口原点;(xvieworg,yvieworg)是设备坐标的视口原点。在缺省的设备环境中,这两个 点均设置为(0,0),但它们可以改变。此公式意味着,逻辑点(xwinorg,ywinorg)总被映射 为设备点(xvieworg,yvieworg)。

windows还能将视口(设备)坐标转换为窗口(逻辑)坐标:

xwindow=(xviewport-xvieworg)*(xwinext/xviewext)+xwinorg

ywindow=(yviewport-yvieworg)*(ywinext/yviewext)+ywinorg

可以使用windows提供的两个函数dptolp和lptodp在设备坐标及逻辑坐标之间互相 转换。

4.映射模式的种类

windows定义了表1所列出的8种映射方式。

上述映射模式中又可分成以下3类:

映 射 方 式 逻 辑 单 位 x 轴 增 加 y 轴 增 加 毫 米 mm_text 像 素 点 右 下 与 设 备 有 关 mm_lometric 0. 1mm 右 上 0.1 mm_himetric 0. 01mm 右 上 0.01 mm_loenglish 0. 254mm 右 上 0.254 mm_hienglish 0. 0254mm 右 上 0.0254 mm_twips 0.0176mm 右 上 0.0176 mm_isotropic 任 意(x=y) 可 选 可 选 可 设 mm_anisotropic 任 意(x!=y) 可 选 可 选 可 设

帮忙做几个词性转换的题吧

顺序为v, n, adj, adv,很多我都觉得没有adv形式。。。

occur, occurence, occuring/occurred, occuringly

attach, attachment, attached/attachable, attachably

conquer, conquest, conquered/conquerable, conquerably

provoke, provocation, provoked, provokingly

apply, application, appliable, applying

observe, observation, observing, observedly

involve, involvement, involving, involvingly

compete, competition/competent, competing, competingly

entitle, entitlement, entitled, entitledly

market, marketing/market, marketed, marketedly

profit, profit, profitable, profitably

harmonize, harmony, harmonious, harmoniously

-(无), curiosity, curious, curiously

associate, association, associative, associatively

-(无), chivalry, chivalric, chivalricly

recollect, recollection, recollective, recollectively

survive, survival, surviving, survivingly

reflect, reflection, reflective, reflectively

sociate, sociating, sociable, sociably

eternize, eternity, eternal, eternally

acclaim, acclamation, acclamatory, acclamatorily

possess, possession, possessive, possessively

subscribe, subscription, subscripted, subscriptedly

corrupt, corruption, corrupt, corruptly

extravagate, extravagance, extravagant, extravagantly

restrain, restraint, restrainable/restrained, restrainably

generate, generation, generous, generously

inhabit, inhabitation/inhabitant, inhabitable, inhabitably

-(无), abundance, abundant, abundantly

contaminate, contamination/contaminatant, contaminative, contaminatively

emerge, emergence/emergency, emergent, emergently

-(无), academy, academic/academical, academically

affirm, affirmation, affirmative, affirmatively

-(无), anxiety, anxious, anxiously

contribute, contribution, contributing, contributingly

distinct, distinction, distinctive/distinct, distinctively

endow, endwoment, endowed, endowingly

evaluate, evaluation, evaluated/evaluative, evaluatively

excede, excessiveness, excess/excessive, excessively

genealogize, gene/genealogy, generic, generically

inherit, inheritance, inheritable, inheritably

inhibit, inhibition, inhibitable/inhibited, inhibitedly

interact, interaction, interactive, interactively

mature, maturity, mature, maturely

perceive, perception, perceptional/perceptive, perceptionally

resent, resentment, resentful, resentfully

-(无), superiority, superior, superiorly

administer, administration, administrative, administratively

assemble, assembly, assembling/assembled, assemblingly

-(无), charity, charitable, charitably

-(无), efficiency, efficient, efficiently

excess 前面有了

magnify, magnitude, magnificent, magnificently

profitable 前面有了,参考profit

subscription 前面有了,参考 subscribe

disclose, disclosure, disclosed, disclosably

occurrence 参考 occur

convert, conversion, convertable, convertably

emulate, emulation, emulative, emulatively

expedite, expedition, expeditious, expeditiously

magnificent 参考 magnitude

perish, perisher, perishable/perished, perishably

-(无), accident, accidental, accidentally

annualize, annuality, annual, annually

consider, consideration, considerable, considerably

deliberate, deliberation, deliberative, deliberatively

harmony 前面有过了

-(无), impetuosity, impetuous, impetuously

intermingle,interminglement, intermingled, -(无)

invent, invention, inventive, inventively

subjectify, subjection, subjective, subjectively

强烈鄙视布置此作业的老师。。。。

conversion构词法是什么?

conversion构词法是转化法。

英语构词法中把一种词性用作另一种词性而词形不变的方法叫做转换法。在物理里指把难于测出的物理量转化为易于测出的物理量的实验方法叫转化法。

举例:

(1)名词 动词: hand:手 传递 water:水 浇水 place:地方 放置 。

land:土地 着陆 design:图案 设计 picture:图画 想像。

(2)形容词 动词: empty空的 倒空 better:较好的 改善。

back:后面的 支持 。

英语中的构词法主要有三种,即转化法、合成法和派生法。

一. 转化法(conversion)

在英语中,一个单词由一种词性转化为另一种或几种词性而词形不变的方法叫做转化法。

1、 动词转化为名词

Let me have a try.

让我试试。

They are only allowed to sell soft drinks at school.

在学校里只准许他们出售不含酒精的饮料。

2. 名词转化为动词

He shouldered his way through the crowd.

他用肩膀推开人群前进。

The smell from the kitchen made his mouth water.

从厨房传来的气味使他流口水。

3. 形容词转化为动词

We will try our best to better our living conditions.

我们要尽力改善我们的生活状况。

They tried to perfect the working conditions.

他们努力改善工作条件。

4. 形容词转化为名词

He didn’t know the difference between right and wrong.

他不辨是非。

The old in our village are living a happy life.

我们村的老年人过着幸福的生活。

5. 形容词转化为副词

How long have you lived there?

你在那儿住多久了?

6. 个别词在一定场合中可转化为名词

Warm clothes are a must in the mountains.

穿暖和的衣服到山区去是必须的。

Life is full of ups and downs.

人生有得意时也有失意时。

His argument contains too many ifs and buts.

他的辩论中含有太多的“如果”和“但是”。

二. 合成法(composition)

由两个或两个以上的单词连在一起合成一个新词,这种构词法叫做合成法,合成的词叫做合成词(compounds)。合成词的写法由习惯决定,可以写在一起,也可以用连词符号连接。

1. 合成名词

名词/代词+名词

newspaper blood-test she-wolf

动词+名词

typewriter pickpocket daybreak

形容词+名词

greenhouse highway

副词+名词

overcoat outside

名词+v.-ing/v.-ing +名词

handwriting reading-room freezing-point

动词+副词/ 副词+ 动词

breakthrough get-together outbreak outcome

名词+介词+名词

sister-in-law editor-in-chief

2. 合成形容词

名词+形容词/形容词+名词

world-famous duty-free large-scale long- term

副词+形容词

over-anxious evergreen

名词+过去分词

man-made sun-burnt

名词+现在分词

peace-loving English-speaking

形容词+现在分词

good-looking easy-going

副词+过去分词

well-informed widespread

副词+现在分词

hardworking far-reaching

形容词+名词+ed

warm-hearted absent-minded

数词+名词+ed

three-legged ten-storied

数词+名词

one-way five–star

数词+名词+形容词

ten-year-old 800-meter-long

名词+to+名词

face –to-face door - to -door

3. 合成动词

名词+动词

baby-sit sleepwalk

副词+动词

outnumber underestimate overwork

形容词+动词

whitewash

4. 合成副词

形容词+名词

meanwhile anyway

形容词+副词

everywhere anyhow

副词+副词

however

介词+名词

beforehand overhead

介词+副词

forever

5. 合成代词

代词宾格+self/selves

herself themselves

物主代词+self/selves

myself yourselves

形容词+名词

anything nothing

6. 合成介词

副词+名词

inside outside

介词+副词

without within

副词+介词

into

三. 派生法

由一个词加上前缀或后缀构成一个与原单词意义相近或截然相反的新词叫做派生法。

1. 前缀

除少数前缀外,前缀一般改变单词的意义,但不改变单词的词性。

(1)表示否定意义的前缀

un-unhappy unfinished undress

dis- disagree disbelieve

in[il-(在字母l前),im-(在字母m,b,p前),ir(在字母r前)]-inaccurate illegal impolite imbalance irregular

mis-misbehave mislead mistake

non-nonstop nonsmoker

(2)表示其他意义的前缀

en-“使……” enrich enlarge encourage

inter-“相互” international intercontinental

re-“再,又,重” rethink retell recycle

tele-“远程的” telescope telephone telegraph

auto-“自动的” automatic automobile

co-“共同” coworker cooperate coexist

anti-“反对,抵抗” antiwar antifreeze antinuclear

multi-“多” multistory multicultural multicolor

bi-“双,二”bicycle bilingual bilateral

micro-“极小的,微小的” microwave microcomputer

over-“太多,过分” overwork overdo overestimate

self-“自己,本身” self-centered self-confident self-control

under-“在……下面,……下的,不足的” underline, underground, underestimate, underrate

2. 后缀

(1)形容词后缀

-able “可……的,具有……的” acceptable drinkable knowledgeable reasonable

-al“与……有关的” physical, magical, political

-an“属于某地方的人” American African

-ern“方向” southern, northern, eastern

-ful/ less“(没)有……的” helpful, useful, homeless, hopeless

-ish“如……的;有……特征的” foolish childish selfish

-ive“有……倾向的” active attractive expensive

-en“由……制成的” golden wooden woolen

-ous“有(性质)的” famous, dangerous, poisonous

-ly “有……性质的” friendly yearly daily

-y“构成形容词” noisy dusty cloudy

(2)名词后缀

-er / or“表人或用具” farmer, baker, visitor, professor, cooker, container

-ese“某国(人)的” Chinese, Japanese

-ian“某国、某地人;精通……的人” musician, Asian, Russian, technician

-ist“某种主义或职业者” physicist, scientist, communist,socialist

-ess“表女性,雌性” hostess, actress, princess

-ment“行为或其状态” government, movement, achievement

-ness“性质,状态” illness, sadness, carelessness

-tion“动作,过程,结果” invention, organization, translation

-ance/ ence“抽象;行为、性质、状态” importance, appearance, absence, existence

-th“性质、情况” depth, warmth, truth

-ful“(满的)量” handful, spoonful, mouthful

-(a)bility“抽象、性质、状态” possibility, disability

英语后缀有加bly吗?

有的,大致分为ably和ibly两种,望采纳。

后缀 -ibly = 可...地,...地,易...地

副词后缀-ibly来源于拉丁语,由形容词后缀?-ible?转化而成。

同缀词:

1.sensibly? [sens 感觉 + -ibly 副词后缀,表示可...地 →]

adv 可感觉地

2.receptibly? [re-再 + cept 拿,抓 + -ibly 副词后缀,表示可...地 →可以拿的,可以抓住的→心理能够接受的→]

adv.可接受地

3.resistibly? [re- 再 + sist 站立 + -ibly 副词后缀,表示可...地→站在对立面→对抗,抵抗→]

adv.可抵抗地

4.corruptibly? [cor-共同 + rupt 断 + -ibly 副词后缀,表示易...地→一起能把国家给断裂了→腐败的官员一起轻易就把国家断裂了→]

adv.易腐败地

5.flexibly?? [flex 柔软 + -ibly 副词后缀,表示易...地→]

adv.易弯曲地

6.convertibly? [con- 共同,一起 + vert 转 + -ibly 副词后缀,表示可...地→几个一起转换→变换→]

adv. 可变换地

7.conductibly? [con- 加强 + duct 引导 + -ibly 副词后缀,表示可...地→]

adv. 能(被)传导地

8.producibly? [pro- 前 + duc 引导 + -ibly 副词后缀,表示可...地→]

adv.可伸展地

9.extensibly? [ex-出 + tens 伸 + -ibly 副词后缀,表示可...地→]

adv.可完成地

10.digestibly? [digest v.消化,吸收 + -ibly 副词后缀,表示可...地→]

adv.可消化地

11.accessibly? [ac- 接近 + cess 走 + -ibly 副词后缀,表示可...地→]

adv.易接近地

后缀-ably = …地,可...地

副词后缀-ably来源于拉丁语,由形容词后缀?-able?转化而成。

同缀词:

1.honourably? [honour vt. 尊敬; 以…为荣 + -ably 副词后缀,可...地→]

adv.光荣地

2.peaceably? [peace n. 和平; 和睦; + -ably 副词后缀,可...地→]

adv.和平地

3.suitably? [suit v.合适 + -ably 副词后缀,可...地→]

adv.合适地

4.laughably? [laugh v.笑 + -ably 副词后缀,可...地→]

adv.可笑地

5.dependably? [depend v.依靠 + -ably 副词后缀,可...地→]

adv.可靠地

6.comfortably? [comfort vt. 安慰,使舒适; + -ably 副词后缀,可...地→]

adv.舒适地

7.changeably? [change v.改变 + -ably 副词后缀,可...地→]

adv.可变地

8.movably?? [mov 移动 + -ably 副词后缀,可...地→]

adv.可移动地

9.lovably?? [love v.爱 + -ably 副词后缀,可...地→]

adv.可爱地

10.comparably? [compar =compare v.比较 + -ably 副词后缀,可...地→]

adv.可比较地

这句口语有问题吗? everything goes well,normally..but what i want is convertibly.

Everything goes well as usual,but I want to change it.

像平常一样,一切都很好,但是我想改变它。

vary的形容词是什么?

vary的形容词是various。第三人称单数varies、现在分词varying、过去式varied、过去分词varied、名词variability、副词varyingly。

vary释义:(使)不同,(使)呈现差异;(根据情况而)变化,改变;改变,使,变化;变奏。

【名】(Vary)(英、法、罗、柬)瓦里(人名)。

用法:

1、在只能作表语的形容词前不能用very,而要使用其他的词。如:I'm wide awake。(不能说very awake)我是完全清醒的。

2、在过去分词用作谓语动词时不可和very连用,要用much、very much或quite等说明程度。

3、现在分词一般不能和very连用,要用much、quite或其他词,Very只可和已转用为形容词的现在分词连用。例如:very interesting(很有趣),very exciting(非常令人兴奋)等。

词语辨析:

turn,change,modify,convert,vary这组词都有“变化,改变”的意思,其区别是:turn指外形、颜色、气味、性质等方面的变化,比change更通俗。

change指任何变化,完全改变,强调与原先的情况有明显的不同。

modify强调起限定作用的变化或变更。指细小的变化,常含“缓和、降调”的意味。

convert指进行全部或局部改变以适应新的功能或用途。指信仰或态度时,强调较激烈、大的改变。

(责任编辑:IT教学网)

更多

相关图片特效文章