verify是什么意思
的有关信息介绍如下:小毛老师教英语-单词系列
verify的意思是:vt. 核实;查证
【读音】英 [ˈverɪfaɪ] 美 [ˈverɪfaɪ]
【语法】
1、verify的基本意思是“以结果、事件或实现、完成某事来证实对某事物的怀疑、恐惧或可能性、有效性”。或者以对比的方法来证实某事物的真实性与准确性,即“证明”“证实”“核实”“查清”。
2、verify是及物动词,可接名词、that从句作宾语。可用于被动结构。
【短语】
1、Verify pbumword 反复输出您的密码
2、Verify pbummword 反复输出您的密码
3、Verify Apps 应用验证 ; 验证应用 ; 验证应用程式
4、Program Verify 编程验证
扩展资料
verify的近义词
touch bottom
【意思】核实;达到最低点
【短语】
1、touch the bottom price 跌至最低点
2、touch h bottom 达到最低点
3、touch the bottom 达到高位
4、I can't touch the bottom 我踩不着底儿了
5、Touch Bottom Rebound 触底反弹
verify,读作:英 ['verɪfaɪ] 美 ['vɛrɪfaɪ],意思如下:
vt.
证明,证实:
Later,findings verified the scientist's theory.
后来的发现证实了这位科学家的理论。
核实,验证,检验;校准:
We must verify his figures.
我们必须把他的数字核实一下。
作证;鉴定;查证:
I looked up the word in a dictionary to verify its spelling.
为了查证这个词的拼写方法,我从词典中查了一下这个词。
【法律】证明…属实(用于宣誓或证词中)
【计算机】检验,核对
【军械】核查;核实
近义词:
confirm
变形:
vt. verified . verifying1、短语
Verify pbumword 反复输出您的密码
Verify pbummword 反复输出您的密码
Verify Apps 应用验证 ; 验证应用程式
Program Verify 编程验证
Verify details 验证细节 ; 验证的详细信息 ; 正在翻译
Verify complete 验证完成 ; 核查完成
Verify Registration 验证登记 ; 验证注册
VERIFY DESTINATION 校验目标盘
Verify Points 验证点
2、例句
We must verify his figures.
我们必须把他的数字核实一下。
I looked up the word in a dictionary to verify its spelling.
为了查证这个词的拼写方法,我从词典中查了一下这个词。
You cannot verify their soul is the same.
你并不能核实他们的灵魂是同一个。
When we already believe something to be true, we verify our belief by checking.
当我们已经相信某些东西是正确的,我们会通过检查来核实这一点。
We need further investigation to verify this entire issue.
我们需要进一步调查来核实整个问题。
However, it would be difficult to verify the accuracy of those images, since only the dreamerever "sees" them.
而既然只有做梦者本人才“见过”那些景象,那么就难以核实它们是否确切。
这是调试用的,verify(bool)值,如果bool不为真程序就会弹出报错,比如有个函数传入了CView的指针,这里CView必须不为空,否则程序就没有进行下去的必要了,可以这样。类型功能还有Assert
void Func(CTestView* pView,...)
{
verify( pView != NULL)
}
该功能只在Debug版本下有效,在Release版本下只是执行中间的代码.
#ifdef _DEBUG
#define VERIFY(f) ASSERT(f)
#else
#define VERIFY(f) (f)
#endif
在DEBUG版本下如果返回结果是假则报错.