What is a symbol table?

前端 未结 6 1862
心在旅途
心在旅途 2020-11-28 02:20

Can someone describe what a symbol table is within the context of C and C++?

6条回答
  •  暖寄归人
    2020-11-28 02:55

    The symbol table is the list of "symbols" in a program/unit. Symbols are most often the names of variables or functions. The symbol table can be used to determine where in memory variables or functions will be located.

提交回复
热议问题