网页
图片
视频
学术
词典
地图
更多
航班
笔记本
finalizers
网络
析构函数;终止式
网络释义
1.
析构函数
(1)声明一个
析构函数
(
Finalizers
),作为类的成员 (2)在类中实现System.IDisposable接口 C#中定义析构函数,编译 …
hi.baidu.com
|
基于12个网页
2.
终止式
你会发现,无论 base class 的
终止式
(
finalizers
)是否被呼叫, Characteristic member objects 都㆒定会被终止化。 每个被覆 …
www.scribd.com
|
基于 1 个网页
例句
释义:
全部
全部
,
析构函数
析构函数
,
终止式
终止式
类别:
全部
全部
,
口语
口语
,
书面语
书面语
,
标题
标题
,
技术
技术
来源:
全部
全部
,
字典
字典
,
网络
网络
难度:
全部
全部
,
简单
简单
,
中等
中等
,
难
难
更多例句筛选
收起例句筛选
1.
Likewise
,
finalizers
are normally processed as a
background
task
,
so
their
cost
is
usually
amortized across
the
system
's
idle
time
.
同样
,
终结
通常
是
后台
任务
,
所以
它们
常常
在
系统
的
空闲
时间
执行
。
www.ibm.com
2.
Review
your
finalizers
carefully
to
ensure
that
even if
they
do
not
run
,
a
critical
operating system
resource
is
not
leaked
.
仔细
检查
终结
器
,
确保
即使
不
运行
这些
它们
也
不会
泄漏
重要
的
操作系统
资源
。
megust.publicvm.com
3.
The
finalizers
are
called
on
objects
that are
no longer
live
during
the
same
garbage
collection
pass
.
将
对
在
同一
垃圾回收
传递
期间
不再
活动
的
对象
调用
终结
器
。
megust.publicvm.com
4.
If
you
see
objects
queued
for
finalization
in
the verbose GC
logs
,
try
to
rewrite
the
application
to
eliminate
the
use
of
finalizers
.
如果
在
verboseGC
日志
中
看到
等待
收尾
的
对象
,
那么
请
尝试
重写
应用程序
以
消除
收尾
器
的
使用
。
www.ibm.com
5.
Don't
rely
on
finalizers
as
the
primary
means
of
releasing
resources
.
不要
依赖
于
终结
器
作为
释放
资源
的
主要
方式
。
www.ibm.com
6.
There
are
a number
of
reasons
,
foremost
of which
is
that
finalizers
are
very
tricky to
write
correctly
(
and
very
easy
to
write
incorrectly
)
.
原因
有
很多
,
最
重要
的
一个
原因
是
,
终结
器
很难
正确
编写
(
并且
很
容易
编写
错
)
。
www.ibm.com
7.
Finalizers
can
cause
a
vulnerability
in
Java
code
when
used
to
create
objects
.
在
使用
终结
器
(
finalizer
)
来
创建
对象
时
,
其
可能会
给
Java
代码
带来
漏洞
。
www.ibm.com
8.
Finalizers
have
a
significant
performance
cost
,
and
they
are
not
guaranteed
to
run
in
a
predictable
amount
of
time
(
or
even
at
all
)
.
Finalizer
需要
牺牲
很多
性能
,
并且
它们
不能
(
甚至
完全
不能
)
保证
在
预计
的
时间
段
运行
。
www.ibm.com
9.
Methods
with
parameters
are
not
class
finalizers
(
in
fact
,
a
rule
should
be
written to
report
these
as
invalid
)
.
拥有
参数
的
方法
不是
类
终结
者
(
实际上
,
一个
规则
应当
将
这些
报告
为
非法
的
)
。
www.ibm.com
10.
Notice
that
the
objects
that
require
finalizers
stay
in
memory
for
extra
cycles
.
注意
,
要求
终结
器
的
对象
会
在
内存
中
多
停留
一个
额外
的
周期
。
dictsearch.appspot.com
1
2