命名将原始数据转换为对象的方法

发布于 2024-08-31 23:34:10 字数 148 浏览 3 评论 0原文

假设您有以下格式的数据:

name=john;age=33;gender=male

您会如何称呼将此类数据转换为对象/关联数组的方法?

我一直在思考:
- 反序列化变量
- 解析变量

Say you have data in the format:

name=john;age=33;gender=male

What would you call a method that converts data like that into an an object / associative array?

I've been thinking about:
- unserialize_variables
- parse_variables

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

起风了 2024-09-07 23:34:10

反序列化Person

DeserialisePerson

热鲨 2024-09-07 23:34:10

人.反序列化?

Person.Unserialize?

心凉 2024-09-07 23:34:10

人物阅读器。如果您将来也更改保存人员数据的方式,则可以使用。

PersonReader. Works if you change how you persist the person data in the future too.

半衾梦 2024-09-07 23:34:10

分两步:

ContainerType person = data.parse();

Employee employee( person["name"], person["age"], person["gender"] );

In two steps:

ContainerType person = data.parse();

Employee employee( person["name"], person["age"], person["gender"] );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文