hash
をobject
に変換するにはどうすればよいですか?私は次のような定義があるとします。Qore:オブジェクトにハッシュを変換する方法
class A {
int i;
string s;
}
class B {
int bi;
A a;
}
hash h = (
"bi" : 100,
"A" : ("i" : 10, "s" : "str"));
私はクラスB
のオブジェクトにh
を変換する可能性がどのようにどのような方法がありますか?
リンク:[create_object()](https://docs.qore.org/current/lang/html/group__object__functions.html#ga6a929dc065cfb0b20639ac815be9cad3)、[create_object_args()](https://docs.qore.org/)現在/ lang/html/group__object__functions.html#ga4a7d04160dbbaf788cd8a0e18f28019c);また、この質問に関連してオープンな問題があります。[オブジェクトのシリアル化とデシリアライズの方法を実装する](https://github.com/qorelanguage/qore/issues/1589) –