chaokunyang commented on issue #2595: URL: https://github.com/apache/fory/issues/2595#issuecomment-3271385989
@pandalee99 C++ don't have runtime reflection system. For serialization in c++, you msut generate coode at compile-time. The reflection system should do that. For c++ 17, you can take a search, it doesn't have reflection support. C++ 20 does have. But we need to keep c++17 for a broader users targets. And to implement reflection in c++17, you need to combine macro and templlate meta programming. @PragmaTwice has did some work in @1212. You can take a look at it if you are interested. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
