globla的翻译是:la是什么意思思

当前位置: &
求翻译:Globla CEO Program for China-Module 3是什么意思?
Globla CEO Program for China-Module 3
问题补充:
中国 - 模块3 Globla CEO课程
首席执行官globla china-module方案3
Globla CEO节目为中国模块3
全球首席执行官计划中国模块 3
全球首席执行官计划中国模块 3
我来回答:
参考资料:
* 验证码:
登录后回答可以获得积分奖励,并可以查看和管理所有的回答。 |
我要翻译和提问
请输入您需要翻译的文本!faill的翻译是:什么意思_百度知道
faill的翻译是:什么意思
我有更好的答案
你好!fail
英[feɪl]
失败,不及格; 倒闭,破产; 缺乏; 衰退;
破产; 衰退; 失败,不及格; 不足;
不及格; 使失望; 忘记; 舍弃;
[例句]The Workers 'Party failed to win a single governorship劳工党连一个州长职位也未能赢得。
公司技术人员
fail?失败+++I fail. 我失败了。I failed to arrive in time. 我没及时到达。你慢慢意会吧,希望可以帮到你。
为您推荐:
其他类似问题
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。globla的翻译是:什么意思_百度知道
globla的翻译是:什么意思
我有更好的答案
global:发音:/ 'ɡləʊb ə ˋglobḷ
/ 'ɡləʊb ə l /解释:affecting or including the whole world 全球的,全世界的例如:global climate change全球气候变化
采纳率:90%
来自团队:
为您推荐:
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。Globallock_百度百科
清除历史记录关闭
声明:百科词条人人可编辑,词条创建和修改均免费,绝不存在官方及代理商付费代编,请勿上当受骗。
Globallock
本词条缺少名片图,补充相关内容使词条更完整,还能快速升级,赶紧来吧!
Globallock是计算机专用。
Globallock说明
锁定内存中指定的内存块,并返回一个地址值,令其指向内存块的起始处。除非用 GlobalUnlock 函数将内存块解锁,否则地址会一直保持有效。为每个内存对象都维持着一个锁定计数。对这个函数的每次调用都应有一个对应的 GlobalUnlock 调用Long,如成功,返回内存块的地址;如出错,或者这是一个已被丢弃的“可丢弃”内存块,则返回零。会设置GetLastError
Globallock参数 类型及说明
hMem Long,指定一个全局内存块的。
一般情况下我们在的时候,给应用程序分配的内存都是可以移动的或者是可以丢弃的,这样能使有限的内存资源充分利用,所以,在某一个时候我们分配的那块内存的地址是不确定的,因为他是可以移动的,所以得先锁定那块内存块,这儿应用程序需要调用API函数GlobalLock函数来锁定句柄。如下: lpMem=GlobalLock(hMem); 这样应用程序才能存取这块内存。
The GlobalLock function locks a global memory object and returns a pointer to the first byte of the object's memory block.
GlobalLock函数将一个全局内存对象锁定,并返回该块内存首字节
The global functions are slower than other memory management functions and do not provide as many features.
Therefore, new applications should use the heap functions. However, the global functions are still used with DDE and the clipboard functions.
全局比其他内存管理函数慢,并且不能提供更多的特征。因此,新应用程序应该使用堆函数,同时考虑到,仍然用于DDE和函数。
LPVOID GlobalLock(
HGLOBAL hMem // handle to global memory object
Parameters
[in] Handle to the global memory object. This handle is returned by either the GlobalAlloc or
Globallock参数
[输入参数]全局内存对象句柄。该句柄由函数GlobalAlloc或返回。
Return Values
If the function succeeds, the return value is a pointer to the first byte of the memory block.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
Globallock返回值
如果函数执行成功,返回值就是指向内存对象首字节指针,否则返回。调用GetLastError可以得到更多.
The internal data structures for each memory object include a lock count that is initially zero. For movable memory objects, GlobalLock increments the count by one, and the GlobalUnlock function decrements the count by one. For each call that a process makes to GlobalLock for an object, it must eventually call GlobalUnlock.
Locked memory will not be moved or discarded, unless the memory object is reallocated by using thefunction. The memory block of a locked memory object remains locked until its lock count is decremented to zero, at which time it can be moved or discarded.
Globallock备注
内存对象的内部数据结构域如锁记数将会初始化为0。对于可移动内存对象,GlobalLock会将计数器加1,而GlobalUnlock函数将计数器减1。对于GlobalLock的每一次调用,都必须相应的调用一次GlobalUnlock函数。除非使用函数对内存对象进行重新分配,否则被锁定的内存空间不能够被移动或释放。直到计数器为0时被锁定的内存块才会可以被移动或者释放。
Memory objects allocated with GMEM_FIXED always have a lock count of zero. For these objects, the value of the returned pointer is equal to the value of the specified handle.
以GMEM_FIXED属性开辟的块空间的计数器始终为0,对于这样的对象,函数的返回值即为该句柄值。
If the specified memory block has been discarded or if the memory block has a zero-byte size, this function returns NULL.
如果指定的内存块已经被释放或者大小为0字节,该函数将返回NULL。
Discarded objects always have a lock count of zero.
释放后的对象的为0。
清除历史记录关闭

我要回帖

更多关于 viva la vida什么意思 的文章

 

随机推荐