freeze

Posted sske531549304

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freeze相关的知识,希望对你有一定的参考价值。

冻结: 即密封,又禁止修改所有属性值!
何时: 如果一个对象中保存了大量不变的属性值时
Object.freeze(obj);
其实是将所有属性的writable设置为false!

 

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
"use strict";

var config={
host:"localhost",
port:"27017",
db:"test",
uname:"root",
pwd:"root"
}
Object.freeze(config);
config.host="192.168.0.100";
</script>
</body>
</html>
























以上是关于freeze的主要内容,如果未能解决你的问题,请参考以下文章

在我使用 cx_freeze 将我的游戏变成执行者后,我的源代码发生了啥变化?

Python cx_Freeze 错误“没有名为 'cx_Freeze.util' 的模块”

犀牛书的实例代码:给对象添加freeze, hide, 查询descriptors

安装 cx_Freeze

使用 cx_freeze 将 .py 转换为 .exe 时出错

Cx_Freeze - 如何包含模块