为什么在java中使用“瞬态”关键字?
2022-09-03 08:27:17
我有一个与关键字在java中修饰符之前的使用有关的问题。transient
private
变量声明:
transient private ResourceBundle pageResourceBundle;
我的类看起来像这样:
public class LoginViewModel extends AbstractViewModel {
transient private ResourceBundle pageResourceBundle;
@AfterCompose
public void afterCompose(@ContextParam(ContextType.VIEW) Component view) {
initializeLoginValues();
boolean timeout = BooleanUtils.toBoolean(getHttpServletRequest().getParameter("timeout"));
if (timeout) {
Messagebox.show(pageResourceBundle.getText("MSG_SESSION_HAS_EXPIRED_PLEASE_LOGIN"), pageResourceBundle.getText("LABEL_ALERT"),
Messagebox.OK, Messagebox.ERROR);
}
view.getPage().setTitle(CsdcLicence.get().getApplicationName());
}
我有一些问题。
1.为什么在私有变量之前使用关键字?transient
2.使用这个关键词的目的是什么?