博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在这种情况下居然strings不出结果, 呵呵哒!
阅读量:4141 次
发布时间:2019-05-25

本文共 609 字,大约阅读时间需要 2 分钟。

        看代码:

#include 
using namespace std;class A {public: void fun1() { printf("this is a xxx1\n"); } void fun2();};void A::fun2(){ printf("this is a xxx2\n");}void fun3(){ printf("this is a xxx3\n");}int main(){ return 0;}
       看结果:

xxxxxx:~> strings a.out /lib/ld-linux.so.2SuSESuSElibpthread.so.0_Jv_RegisterClasseslibstdc++.so.6__gxx_personality_v0_ZNSt8ios_base4InitC1Ev_ZNSt8ios_base4InitD1Ev__gmon_start__libm.so.6libgcc_s.so.1libc.so.6puts__cxa_atexit_IO_stdin_used__libc_start_mainGLIBC_2.0GLIBC_2.1.3CXXABI_1.3GLIBCXX_3.4PTRh@[^_]this is a xxx3this is a xxx2
        居然没有this is a xxx1,  今天踩了这个大坑, 差不多浪费0.5小时。

转载地址:http://eiwti.baihongyu.com/

你可能感兴趣的文章
java虚拟机错误问题
查看>>
oracle建立表空间
查看>>
oracle分区表的性能提升
查看>>
"Cannot allocate memory" OutofMemory when call Ant to build Polish project in Tomcat
查看>>
dumpcap抓包(python)
查看>>
查看文件是否被其他进程访问
查看>>
字符编码详解
查看>>
python使用dpkt分析wireshak报文(Modbus规约)
查看>>
css中的IFC
查看>>
CentOS 6.5下 mysql用户root登录不了
查看>>
windows + tomcat 部署web服务 http 改为https访问方法
查看>>
Windows系统下Apache 服务器启动以及过程中产生问题的解决办法
查看>>
Oracle服务说明
查看>>
异常收集(三):Missing artifact com.oracle:ojdbc6:jar:1.0 两种解决方案
查看>>
异常收集(四):Plugin execution not covered by lifecycle configuration
查看>>
异常收集(五):Io 异常: The Network Adapter could not establish the connection
查看>>
JSP中的转义字符
查看>>
SQLException: The user specified as a definer ('root'@'%') does not exist
查看>>
Linux 操作指令收集
查看>>
CentOS 7下卸载MySQL方式(转)
查看>>