Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 C++ 子集的编译器构建符号表。
我的问题是如何处理对象中的范围。我的意思是,在像 Pascal 这样的普通语言中,我们应该为每个作用域创建一个符号表。但是对于 C++,我应该考虑另一种方法来处理对象的方法和属性吗?
问候。
我会说一个对象对于它的方法和属性的每个范围都有一个符号表,另外还有一个用于友元类和方法的表。
这只是一个想法。