新闻资讯
看你所看,想你所想

Raise(Raise)

Raise(Raise)

Raise(Raise)

英文单词。

n. 上升,高地,增高,提出

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

v.提出(问题)。徵集,募集

也作为Err参数。

基本介绍

  • 外文名:Raise
  • 时 态:raised,raising,raises
  • 名 词:rais'er
  • 释义:n. 上升,高地,增高,提出

基本信息

raise [reiz]
n. 上升,高地,增高,提出
vt. 升起,举起,唤起,提高,使出现,使复活,提出,筹集;养育
n. 上升,高地,增高,提出
vt. 升起,举起,唤起,提高,使出现,使复活,提出,筹集;养育
v.提出(问题)
时 态: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>
函式原型
intraise(int sig)
函式说明
raise()将参数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.\n");
if((pid = fork()) < 0)
{
perror("fork error\n");
exit(1);
}
if(0 == pid)
{
printf("In child process doraise() to send 'SIGSTOP' signal.\n\n");
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.\n", pid);
if(0 == (waitpid(pid, NULL, WNOHANG)))
{
if(0 == (ret = kill(pid, SIGKILL)))
printf("kill %d\n", pid);
else
perror("kill error\n");
}
}
}

转载请注明出处海之美文 » Raise(Raise)

相关推荐

    声明:此文信息来源于网络,登载此文只为提供信息参考,并不用于任何商业目的。如有侵权,请及时联系我们:ailianmeng11@163.com