请输入您要查询的百科知识:

 

词条 Raise
释义

基本信息

raise [reiz]  n. 上升,高地,增高,提出
vt. 升起,举起,唤起,提高,使出现,使复活,提出,筹集;养育 n. 上升,高地,增高,提出

vt. 升起,举起,唤起,提高,使出现,使复活,提出,筹集;养育

时 态:raised,raising,raises

名 词:rais'er

同反义词

同: [n.] acclivity, heave, hike, rise [v.] bring up, conjure, elevate, farm

反: [n.] declension, declination, decline, declivity [v.] bring down, demote, dismantle, get down 点击查看……

词义辨析

arise,rise,raise,lift

这些动词均有“上升,举起”之意。

arise书面用词,多用于诗歌或比喻中,具有特殊的修辞色彩。

rise普通用词,指具体的或抽象的事物由低向高移动。

raise及物动词,常用词,多指把某物从低处升到高处,有时作引申用。

lift语气比raise强,指用体力或机械的力举起或抬起某物。

参考例句

His long absence raised doubts / fears about his safety.他久未露面使人们对他的安全产生疑虑;担心。不适合 The secretary had hope for a raise during the next month.秘书希望下个月的时候能加薪。不适合 The Republicans were in opposition to the raise in taxes.共和党反对加税。不适合 He tried to fend off the questions raised by the newsman.他试图回避那个新闻记者提出的问题。不适合 Iran and Libya raised oil prices by more than 10 percent.伊朗和利比亚将石油价格提高了10%以上。不适合 more...

常用短语

raise hell闹事,惹乱子,大吵大闹,狂欢raise the roofv.喧闹,大声抱怨raise up举起

描述

生成运行时错误。

语法

object.Raise(number, source, description, helpfile, helpcontext)

Raise 方法的语法有以下部分:

参数 描述

object 应为 Err 对象。

number Long 整数子类型,标识错误性质。VBScript 错误(有 VBScript 定义和用户定义两种错误)的范围在 0-65535 之间。

source 命名最初产生错误的对象或应用程序的字符串表达式。当为 Automation 对象设置此属性时,请使用窗体 project.class。如未作任何指定,则使用当前 VBScript 项目的程序设计 ID。

description 描述错误的字符串表达式。如未指定,则检查 number 的值。如可将其映射为 VBScript 运行时错误代码,则将 VBScript 提供的字符串作为 description 使用。如没有与 number 对应的 VBScript 错误,则使用通用错误信息。

helpfile Help 文件的完整合法的路径,在该 Help 文件中可找到此错误的帮助信息。如未指定,则 VBScript 将使用 VBScript Help 文件的完整合法的驱动器、路径和文件名。

helpcontext 上下文 ID,标识 helpfile 中提供错误帮助的主题。如果省略,则使用与 number 属性对应的错误的 VBScript Help 文件上下文 ID(如果存在)。

说明

除了 number 以外的所有参数都是可选的。如果使用 Raise,而不指定某些参数,且 Err 对象的属性设置含有未清除的值,则这些值将成为错误的值。

在 Automation 对象中设置错误代码的 number 属性时,请向常数 vbObjectError 添加错误代码编号。例如,要生成错误号 1050,可将 number 属性赋值为 vbObjectError + 1050 。

Linux C

raise函数

所需头文件

#include<signal.h>

#include<sys/types.h>

函数原型

int raise(int sig)

参数说明

sig 系统信号

函数返回

成功:0

失败:-1

程序示例:

#include<stdio.h>

#include<stdlib.h>

#include<signal.h>

#include<sys/types.h>

#include<sys/wait.h>

int main(void)

{

pid_t pid;

int ret;

printf("Create child process.\");

if((pid = fork()) < 0)

{

perror("fork error\");

exit(1);

}

if(0 == pid)

{

printf("In child process do raise() to send 'SIGSTOP' signal.\\");

raise(SIGSTOP);

exit(0);

}

else

{

printf("In parent process clollect signal which were child process sent and call kill() do options for itself.'n");

printf("pid = %d.\", pid);

if(0 == (waitpid(pid, NULL, WNOHANG)))

{

if(0 == (ret = kill(pid, SIGKILL)))

printf("kill %d\", pid);

else

perror("kill error\");

}

}

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/31 15:07:30