为什么 memcpy 不在导入 table 中?

Why isn't memcpy in the import table?

当我在符号列表中看到 memcpy 时,我正在使用 Visual Studio 生成的 pdb,所以我使用 dumpbin 检查导入 table executable 但那里没有对 memcpy 的引用。

memcpy不是crt库导出的函数吗?如果是这样,为什么我在 dumpbin 的输出中看不到它?

memcpy 通常被视为 intrinsic,尤其是在复制小项目时,因此完全编译为内联代码。

尝试复制更大的东西。然后你可能会在 import table.

中看到它