大约有 1,100 项符合查询结果(耗时:0.0043秒) [XML]

https://www.tsingfun.com/it/cp... 

【解决】C、C++混合编译link失败问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

【解决】C、C++混合编译link失败问题c_cpp_mixed_compileC、C++混合编译时,C头文件不加 extern "C",函数按照C++编译会改变函数名称,导致link时报undefined reference to `xxx` 的 错误。加 extern "C" 解决,但是直接加的话 C、C++混合编译时,C...
https://bbs.tsingfun.com/thread-1157-1-1.html 

编译失败! Error: Your build failed due to an error in the AAPT stage,...

编译apk报错如下: 经过日志分析如下: Tag <activity> attribute name has invalid character [java] /tmp/1685410160630_0.39828964915976717-0/youngandroidproject/../build/AndroidManifest.xml:5: Tag <activity> attribute name has invalid character '�'.    &n...
https://www.tsingfun.com/it/cpp/2151.html 

总结const_cast、static_cast、dynamic_cast、reinterpret_cast - C/C++ - ...

...转换,但不能在实例和指针之间转换。static_cast只能提供编译时的类型安全,而dynamic_cast可以提供运行时类型安全。举个例子: class a;class b:a;class c。 上面三个类a是基类,b继承a,c和ab没有关系。 有一个函数void function(a&a...
https://www.tsingfun.com/it/op... 

wandbox:C++在线编译项目源码编译及原理剖析 - 开源 & Github - 清泛网 - ...

wandbox:C++在线编译项目源码编译及原理剖析wandbox项目地址:https: github com tsingfun wandbox原项目是日文版的,这里是一个分支版本,添加了一些中文注解,后续可能会部分翻译中中文。官网地址:https: wandbox org ,可以在 项目地...
https://www.tsingfun.com/it/tech/1917.html 

mtex.cpp 断言失败崩溃:行90,行108 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...原因可能有:缓冲区溢出,内存被非法修改,dll动态库与编译lib不匹配(如使用低版本的lib编译出的exe调高版本的dll,即可能发生函数偏移量错位等情况)等。 可以往这个方向去查,本文仅提供一个思路。有其他的异常情况或...
https://www.tsingfun.com/it/tech/2300.html 

Linux平台编译curl:checking run-time libs availability... failed - 更...

Linux平台编译curl:checking run-time libs availability... failed64位编译1)configure过程失败如下, checking run-time libs availability failed configure: error: one or more libs av 64位编译 1)configure过程失败如下, checking run-time libs availability...
https://bbs.tsingfun.com/thread-1276-1-1.html 

App Inventor 2 解决一个编译报错DX failed - App Inventor 2 中文网 - 清...

会员反馈,项目编译失败,报错如下: -----通过查看编译日志: [java] indicate that it is *not* an inner class.      [java] Uncaught translation error: java.lang.IllegalArgumentException: already added: Lorg/eclipse/paho/client/mqttv3/BufferedMes...
https://www.tsingfun.com/it/cpp/2146.html 

__declspec(dllexport) 导出符号解决链接失败问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

.../Debug/xxx.exe : fatal error LNK1120: 2 个无法解析的外部命令 的编译错误。 原因是引用的dll中的函数没有导出导致,可以用Depends打开dll查看验证,使用如下的宏申明解决: #ifdef _EXPORTING #define API_DECLSPEC __declspec(dllexport) #elif defin...
https://bbs.tsingfun.com/thread-1842-1-1.html 

【客户反馈】增加直接改项目名称的功能 - 用户反馈 - 清泛IT社区,为创新赋能!

...ttps://bbs.tsingfun.com/thread-1879-1-1.html rename 没有真正改名,编译仍然失败 另存为 是彻底改了,编译通过。 rename后再另存,就不行。 修复中。。。App Inventor 2  发表于 2024-08-30 09:29 rename  没有真正改名,编译仍然失...
https://www.tsingfun.com/html/... 

.a: error adding symbols: File format not recognized 原因 - 操作系统(...

...ognized 原因error-adding-symbols-file-format-not-recognizedlinux,gccLinux编译链接时报错:xxx a: error adding symbols: File format not recognized。也可能出现编译能通过,但ldd报链接失败不能运行。原因是:在低版本Linux GCC上编译工程 Linux编译链接时报...