- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
什么是本地类的实例比其方法生命周期更长的示例?查看本地类/数据类型仅在该方法中可见,应该存储对本地类实例的引用的变量的数据类型应该是什么?应该在哪里使用这样的本地类(实例比它们的方法还长)?
最佳答案
一个例子是本地类实现 Runnable/Callable然后被发送到 ExecutorService或 ScheduledExecutorService例如:
public void sendMailAsync(Message msg){
class MailSendingRunnable implements Runnable(){
private MailSender mailSender;
private Message msg;
public MailSendingRunnable(Message msg, MailSender mailSender){
// ...
}
public void run(){
mailSender.send(msg);
}
}
this.executor.submit(new MailSendingRunnable(this.mailSender, msg);
}
如您所见,MailSendingRunnable 将在方法返回后继续存在,因为在 MailSendingRunnable 中运行的方法稍后将在另一个线程中作为 ExecutorService.submit(Runnable) 调用。方法状态。
关于java - 本地类比其方法生命周期更长的示例是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18728744/
所以我的问题是: 为什么(以及如何避免)C# 中的 Is 运算符的生命周期比 if 中使用的更长? 例子: Animal a = new Cat(); if (a is Cat c) { Co
我遇到了这个问题,我已经尝试解决了很长一段时间。理想情况下,我希望 particles.js 的“生成框”向下延伸到页面底部(由 fullpage.js 计算的 7 x viewport),这样当使用
我想让一个 div(我的侧边栏)延伸到页面底部。我知道我需要添加“高度:100%;”为了做到这一点。 但是当我添加 height: 100%; 时,内容少于侧边栏的页面会降低侧边栏的高度,然后您就看不
只有我这么认为吗,还是在 SQL Server 2008 Management Studio 中扩展数据库列表比在 SQL Server 2005 Management Studio 中扩展数据库列表
我是一名优秀的程序员,十分优秀!