加载中
Android NDK build vsomeip3

Build Boost for Android https://github.com/moritz-wundke/Boost-for-Android set the NDK_ROOT environment export NDK_ROOT=~/Android/Sdk/ndk/23.1.7779620 if you have downloaded the...

AVL Tree Rotate

AVL tree single rotate /** Rotate binary tree node with left child. For AVL trees, this is a single rotation for case 1. Update heights, then set new root. */ void rotateWithLef...

2022/06/30 17:16
92
object sliccing in C++

https://www.geeksforgeeks.org/object-slicing-in-c/

2018/01/15 16:51
130
designpatterns -- iterator

迭代器模式 出处 图解设计模式 结城浩著 /** * @author linx * @version 1.0 * @created 19-十二月-2017 13:08:57 */ public interface Iterator {   public abstract boolean hasNex...

2017/12/19 16:56
116
designpatterns -- strategy

策略模式 类图 代码 #include <iostream> using namespace std; class Strategy { public: Strategy() {} ~Strategy() {} virtual void Travel() = 0; }; class Strate...

2017/12/18 16:54
77
链接错误

使用的是静态lib,编译时使用了动态lib方式,导致链接错误 解决方法

2017/11/23 10:53
165
error lnk2019 无法解析的外部符号

error lnk2019 无法解析的外部符号 fatal error LNK1120: 1 个无法解析的外部命令 错误原因:从当前工程调用另外工程的void fun(); 解决方法:1. void fun(); 所在工程设置为生成 lib 并提供...

没有更多内容

加载失败,请刷新页面

返回顶部
顶部