计算机英语单词动词,keep

本词条缺少概述图,补充相关内容使词条更完整,还能快速升级,赶紧来编辑吧!

keep是一个常用英语单词,既可以做及物动词也可以做不及物动词。

中文名

keep

短    语

keep a seat注    意

keep还是程序里的一个常用函数

释义为

保持

keep英文释义

编辑

语音

用作及物动词(1)保留、保存、保持、留下

e.g. We'd better keep a seat for him.

我们最好给他留个座位。

He kept all the money in the bank.

他把所有的钱都存入了银行。

(2)履行(诺言)遵守

e.g. One should keep one's promise.

一个人应当遵守自己的诺言。

Everybody must keep the law.

人人都必须守法。

(3)赡养,养活,饲养

e.g. He has a large family to keep.

他有一大家人要养活。

The old man kept many animals like dogs, pigs and cats.

这位老人养了许多动物,像狗、猪、还有猫等。

(4)经营,管理

e.g. He kept a hotel in this city.

在这座城市里,他开了一家旅店。

She is good at keeping house.

她擅长管理家务。

(5)保守(秘密),记(日记、帐)

Mary keeps a diary every day

玛丽天天记日记。

You must keep secrets for your friends.

你必须为你的朋友们保守秘密

(6)庆祝;守(宗教节日等)

e.g. All of the people keep the Spring Festival in our country.

我国所有的人都庆祝春节。

Some of them keep birthdays.

他们中有些人庆祝生日。

(7)使……处于某种状态(情况)

在这种情况下,keep常跟复合结构(keep+宾语+补语)。用作宾语补足语常见的词有现在分词、过去分词、形容词、副词以及介词短语。

e.g. He kept me waiting for half an hour.

他让我等了半个小时。

Keep your mouth shut and your eyes open.

少说话,多观察。

The doctor kept me in for a week.

医生一周没让我出去。

He always keeps his books in good order.

他总是把书放得整整齐齐。

.keep +形容词

keep+sth/sb +形容词

keep +doing 一直做某事.keep ...from doing ...阻止做某事.

keep a pet 饲养一个宠物

How long may I keep this book keep指借.

用作不及物动词

(1)保持、继续(处于某种状态)(keep为连系动词)

e.g. Please keep quiet.

请保持安静。

We're keeping in very good health.

我们身体非常好。

(2)(食物)保持良好状态

e.g. Will this fish keep till tomorrow?

这鱼能放到明天吗?

C、keep构成的一些短语

keep (sb.) away (from sth.)(使)某人离开(某物)

keep sb. from doing sth. 阻止某人做某事

keep sth. in mind 记住(某事物)

keep sb./ sth. out (of sth.) 不让……入内

keep back 忍住(眼泪),扣下,隐瞒

keep in touch with 与……保持联系

keep (on) doing sth. 继续做某事

keep off 远离,避开,让开

keep on 穿戴着。。。;使(灯等)一直开的。

keep out 使留在外面

keep up 保持(不低落),继续

keep up with 跟上,不落在后面

both and既...且...;...和...都

both of两者(都);两个(都);双方(都)

neither nor既不...也不;也不

neither of(两者之中)无一个

either or或者

either of (两者之中)任何一个

keep单词要点

编辑

语音

1.keep的基本意思是“保留,保管,保存,留下,保持”,指使某人或某物继续保持某种状态。引申可作“管理,经营”“料理,照顾”“抚养,养活,饲养”“遵守,维护”“庆祝”“耽搁”“记”等解。

2.keep既可用作及物动词,也可用作不及物动词。用作及物动词时,接名词或代词作宾语(不可接动词不定式作宾语),也可接双宾语,其间接宾语可转化为介词for的宾语。keep用作不及物动词作“保存”解时,主动结构常含被动意义。

3.keep还可接以形容词、副词、as短语、现在分词(短语)、过去分词(短语)等充当宾语补足语的复合宾语,但不可接含动词不定式的复合宾语。

4.keep作“保持,继续”解时还可用作系动词,后跟表语,该表语可由形容词、副词、名词、动名词或介词短语等充当,此用法keep有时可用于进行体。

5.keep后接介词from,再接名词或动名词,表示“使自己不做某事”,主要用于否定句或疑问句。

6.由keep构成的常用习语大多不用于进行体。

keep计算机函数

编辑

语音

函数名: keep

功 能: 退出并继续驻留

用 法: void keep(int status, int size);

程序例:

/***NOTE:

This is an interrupt service routine. You

can NOT compile this program with Test

Stack Overflow turned on and get an

executable file which will operate

correctly. Due to the nature of this

function the formula used to compute

the number of paragraphs may not

necessarily work in all cases. Use with

care! Terminate Stay Resident (TSR)

programs are complex and no other support

for them is provided. Refer to the

MS-DOStechnical documentation

for more information. */

#include

/* The clock tick interrupt */

#define INTR 0x1C

/* Screen attribute (blue on grey) */

#define ATTR 0x7900

/* reduce heaplength and stacklength

to make a smaller program in memory */

extern unsigned _heaplen = 1024;

extern unsigned _stklen = 512;

void interrupt ( *oldhandler)(void);

void interrupt handler(void)

{

unsigned int (far *screen)[80];

static int count;

/* For a color screen the video memory

is at B800:0000. For a monochrome

system use B000:000 */

screen =MK_FP(0xB800,0);

/* increase the counter and keep it

within 0 to 9 */

count++;

count %= 10;

/* put the number on the screen */

screen[0][79] = count + '0' + ATTR;

/* call the old interrupt handler */

oldhandler();

}

int main(void)

{

/* get the address of the current clock

tick interrupt */

oldhandler = getvect(INTR);

/* install the new interrupt handler */

setvect(INTR, handler);

/* _psp is the starting address of the

program in memory. The top of the stack

is the end of the program. Using _SS and

_SP together we can get the end of the

stack. You may want to allow a bit of

saftey space to insure that enough room

is being allocated ie:

(_SS + ((_SP + safety space)/16) - _psp)

*/

keep(0, (_SS + (_SP/16) - _psp));

return 0;

}

keep智能报警器

编辑

语音

d52186a5171a8788ae584f7e72415a06.png防丢、防忘、防遗漏、防水的Keep。Keep是采用最新蓝牙4.0版本高效低功耗无线连接技术,创造性的开发出防丢与遥控功能于一体的多功能产品。

设备与具备蓝牙4.0功能的主流智能手机成功连接后,用户手机与Keep超出设置连接距离时,手机开始震动和响铃提醒用户,且蓝牙防丢器开始启动报警声及闪光提示,以便用户发现和查找位置。除此之外Keep在与手机保持连接的状态下,还具备遥控手机拍照、录音、录影、寻找汽车、手机照明等功能。参考资料

1.

防丢、防忘、防遗漏、防水蓝牙4.0智能遥控报警器Keep

.爱搞机.2013-03-31[引用日期2013-04-01]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值