x
发布时间:2017-10-24 10:58:07
#1) 项目工程文件目录结构 #2) 源码##2.1) hello/include/hello.h点击(此处)折叠或打开#ifndef HELLOWORLD_HELLO_H#define HELLOWORLD_HELLO_Hextern void hello(void);#endif //HELLOWORLD_H.........【阅读全文】
发布时间:2017-10-24 10:17:00
1.cmake_minimum_required 语法:cmake_minimum_required(VERSION X.X) 说明:CMake最低版本号要求 示例:cmake_minimum_required(VERSION 3.5)2.project 说明:指定项目名称 示例:project(target)3.add_executable 语法:add_e.........【阅读全文】
发布时间:2017-10-12 12:39:24
__attribute__((constructor)):被修饰的函数在main函数之前调用__attribute__((destructor)):被修饰的函数在main函数之后调用点击(此处)折叠或打开#include #include static void __attribute__ ((constructor)) __reg_modu.........【阅读全文】
发布时间:2017-10-12 12:39:04
__attribute__((constructor)):被修饰的函数在main函数之前调用__attribute__((destructor)):被修饰的函数在main函数之后调用点击(此处)折叠或打开#include <stdio.h> #include <stdlib.h>static void __attribute__ ((constructor)) __reg_mod.........【阅读全文】
发布时间:2017-06-27 09:55:53
操作系统:ubuntu10.04前言: 在稍微大点的项目中,基本都会遇到算法问题,特别是大数据的查找。 在当前项目中,使用到了哈希链表。一,概述......【阅读全文】