大约有 7,500 项符合查询结果(耗时:0.0174秒) [XML]

https://bbs.tsingfun.com/thread-1076-1-1.html 

弹球游戏 - App Inventor 2 中文网 - 清泛IT论坛,有思想、有深度

       弹球游戏作品提交:         相比课上,增加了小球撞击时与失败时音效与设置难度,并且将小球初始位置改为了不固定数值。
https://www.tsingfun.com/it/os... 

Linux bpftrace学习笔记(持续更新) - 操作系统(内核) - 清泛网 - 专注IT技能提升

...lib64/gconv/gconv-modules.cache [...] 2、列出与open系统调用相关跟踪点函数名: # bpftrace -l 'tracepoint:syscalls:sys_enter_open*' tracepoint:syscalls:sys_enter_open_by_handle_at tracepoint:syscalls:sys_enter_open tracepoint:syscalls:sys_enter_openat 3、工具开始运...
https://www.tsingfun.com/it/cp... 

char类型移动跨平台踩过坑 - C/C++ - 清泛网 - 专注IT技能提升

char类型移动跨平台踩过坑CFLAG-fsigned-charchar强转int时,发现在x86平台下是按照有符号处理,但是在ARM32下被当成了无符号导致问题,ARM64正常有符号。经调查,在PC上,char类型默认为signed-char,但是在一些嵌入式设备 char强转...
https://www.tsingfun.com/it/cp... 

cout保留两位小数输出 - C/C++ - 清泛网 - 专注C/C++及内核技术

cout保留两位小数输出cout_two_decimalC++ std::cout输出2位小数代码: include <stdio h> include <iostream> include <iomanip> std::setprecision函数需要引入该头文件int main(){ double dval C++ std::cout输出2位小数代码: #include <stdio.h> #include <iostr...
https://www.tsingfun.com/it/cp... 

【解决】eclipse新建项目报错:overlaps the location of another project:...

...location of another project: & 39;xxx& 39;,确保workspace下没有重复工程,但之前曾经添加并删除过,现在却添加不了。解决方法: Eclipse新建项目时报错:overlaps the location of another project: 'xxx',确保workspace下没有重复工程,但之前曾...
https://www.tsingfun.com/it/cp... 

eclipse cdt 运行程序时添加依赖库路径 - C/C++ - 清泛网 - 专注C/C++及内核技术

...下,如果不使用 LD_LIBRARY_PATH 指定库路径(即当前目录)话,仍然会报加载不到依赖库错误。那么Eclipse CDT也是类似,可 我们知道Linux即使依赖库和可执行文件在同一目录下,如果不使用 LD_LIBRARY_PATH 指定库路径(即当前目...
https://www.tsingfun.com/it/cp... 

【解决】asan runtime does not come first in initial library list - C/C...

...e error. 可能有多种方式解决(请逐一尝试): 1、依赖库列表中,将asan放到第一个 2、程序运行依赖中,入口程序必须添加asan支持,之后程序都可以不加,否则报此错误。如A运行需要依赖B程序,则B作为入口程序添加asan...
https://www.tsingfun.com/it/cp... 

【解决】munmap_chunk(): invalid pointer - C/C++ - 清泛网 - 专注C/C++及内核技术

...unk(): invalid pointermunmap_chunk-invalid-pointer原因:new malloc出来指针被覆盖掉了,然后delete free就会报这个错误。例如:char* word = (char*)malloc(10);word = "abc"; 应使用 strcpy(word, "abc");free(word) 原因:new/malloc出来指针被覆盖掉了,然后...
https://www.tsingfun.com/it/cp... 

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

...编译会改变函数名称,导致link时报undefined reference to `xxx` 错误。加 extern "C" 解决,但是直接加话 C、C++混合编译时,C头文件不加 extern "C",函数按照C++编译会改变函数名称,导致link时报 undefined reference to `xxx` 错误。加 e...
https://www.tsingfun.com/it/cp... 

Intel SMID指令集编译错误: inlining failed in call to always_inline \'x...

...mismatch xxxintel_smid_compile_error最近在使用CPU指令集优化代码时候,编译出错,报错如下: usr lib64 gcc x86_64-suse-linux 7 include avx2intrin h:252:1: error: inlining failed in call to always_i 最近在使用CPU指令集优化代码时候,编译出错,报错如...