当前位置: 首页 > news >正文

临沂设计网站的公司seo如何提升排名收录

临沂设计网站的公司,seo如何提升排名收录,国内网页设计师个人网站,WordPress完整安裝包目录 一.前言二.生成静态链接库三.使用静态链接库四.其他 一.前言 这篇文章简单讨论一下VS如何生成和使用C静态链接库,示例使用VS2022环境。 二.生成静态链接库 先创建C项目-静态库 然后将默认生成的.h和.cpp文件清理干净,当然你也可以选择保留。 然…

目录

  • 一.前言
  • 二.生成静态链接库
  • 三.使用静态链接库
  • 四.其他


一.前言

这篇文章简单讨论一下VS如何生成和使用C++静态链接库,示例使用VS2022环境。

二.生成静态链接库

先创建C++项目-静态库

在这里插入图片描述

在这里插入图片描述

然后将默认生成的.h和.cpp文件清理干净,当然你也可以选择保留。

然后创建需要的.h和.cpp文件。

在这里插入图片描述

看下代码

//lib_demo.h#ifndef LIB_DEMO_H
#define LIB_DEMO_H#include<string>class LibDemo
{
public:LibDemo(void) = default;~LibDemo(void) noexcept = default;void Print(const std::string& msg);
};#endif // !LIB_DEMO_H
//lib_demo.cpp#include"lib_demo.h"#include<iostream>void LibDemo::Print(const std::string& msg)
{std::cout << "msg:" << msg << std::endl;
}

很简单的代码,就是提供一个打印字符串的接口。编译一下,但是这个时候你会发现项目不能编译。

报错

在这里插入图片描述

这是因为清理了生成的默认文件,需要在项目属性-C/C+±预编译头-预编译头,改为“不使用预编译头”就可以了。

在这里插入图片描述

编译生成了lib_demo.lib,这样静态链接库生成就是完成了。

三.使用静态链接库

我们看一下怎么使用静态链接库,创建C++项目-空项目,编写exe程序,这个exe程序会调用静态链接库。

在这里插入图片描述

看下代码

//main.cpp#include<string>#include"lib_demo.h"int main(int argc, char* argv[])
{LibDemo libDemo;std::string strMsg("exe_demo");libDemo.Print(strMsg);return 0;
}

其实就是很简单的代码。

执行结果

在这里插入图片描述

需要注意的是:

  • 需要在项目属性-C/C+±常规-附加包含目录,设置项目包含的头文件所在位置。

  • 需要在项目属性-链接器-常规-附加库目录,设置项目依赖的库文件(.lib)所在位置。

  • 需要在项目属性-链接器-输入-附加依赖项,设置项目依赖的库文件(.lib)。

四.其他

1.也可以使用其他的方式创建静态链接库项目,比如创建C++项目-Windows桌面向导

在这里插入图片描述

2.建议自定义配置.lib/.exe等文件的生成目录。

3.建议在解决方案-项目依赖项/项目生成顺序中指定同一个解决方案中的项目依赖规则

在这里插入图片描述

在这里插入图片描述


欢迎讨论,欢迎指正,欢迎转载。


文章转载自:
http://sori.c7630.cn
http://waggish.c7630.cn
http://adhesion.c7630.cn
http://whitworth.c7630.cn
http://unconstitutional.c7630.cn
http://brumous.c7630.cn
http://clumpy.c7630.cn
http://hotelman.c7630.cn
http://microseismograph.c7630.cn
http://unanaesthetized.c7630.cn
http://auspicious.c7630.cn
http://mitospore.c7630.cn
http://andragogy.c7630.cn
http://germane.c7630.cn
http://irregularly.c7630.cn
http://unpen.c7630.cn
http://invisible.c7630.cn
http://nucleus.c7630.cn
http://tropaeolum.c7630.cn
http://quixote.c7630.cn
http://salpingolysis.c7630.cn
http://wintertime.c7630.cn
http://remscheid.c7630.cn
http://embourgeoisification.c7630.cn
http://hogback.c7630.cn
http://typographical.c7630.cn
http://quadruped.c7630.cn
http://patchery.c7630.cn
http://examples.c7630.cn
http://suicidally.c7630.cn
http://guilty.c7630.cn
http://trenchplough.c7630.cn
http://seal.c7630.cn
http://adiathermancy.c7630.cn
http://cpsu.c7630.cn
http://malmaison.c7630.cn
http://cathedral.c7630.cn
http://dispassionate.c7630.cn
http://basis.c7630.cn
http://ricinus.c7630.cn
http://eudaemon.c7630.cn
http://clamshell.c7630.cn
http://allium.c7630.cn
http://discontinuation.c7630.cn
http://porket.c7630.cn
http://balistraria.c7630.cn
http://reflectoscope.c7630.cn
http://somatotype.c7630.cn
http://tranquil.c7630.cn
http://berate.c7630.cn
http://lovestruck.c7630.cn
http://appreciator.c7630.cn
http://gratulant.c7630.cn
http://furiously.c7630.cn
http://casbah.c7630.cn
http://polydactylous.c7630.cn
http://quizee.c7630.cn
http://callous.c7630.cn
http://diestrous.c7630.cn
http://vambrace.c7630.cn
http://torrone.c7630.cn
http://cheryl.c7630.cn
http://vesica.c7630.cn
http://delphinine.c7630.cn
http://thyrosis.c7630.cn
http://frigg.c7630.cn
http://noddy.c7630.cn
http://whimsicality.c7630.cn
http://attractable.c7630.cn
http://comintern.c7630.cn
http://blae.c7630.cn
http://unicellular.c7630.cn
http://cladistic.c7630.cn
http://racy.c7630.cn
http://climax.c7630.cn
http://cadence.c7630.cn
http://appetizer.c7630.cn
http://ppe.c7630.cn
http://epigraph.c7630.cn
http://hoosegow.c7630.cn
http://reboso.c7630.cn
http://board.c7630.cn
http://apagogical.c7630.cn
http://afterheat.c7630.cn
http://gradual.c7630.cn
http://cried.c7630.cn
http://complementizer.c7630.cn
http://deterrence.c7630.cn
http://abasement.c7630.cn
http://corer.c7630.cn
http://gnotobiology.c7630.cn
http://polyclinic.c7630.cn
http://royalist.c7630.cn
http://amazed.c7630.cn
http://jobbery.c7630.cn
http://misreckon.c7630.cn
http://goosegog.c7630.cn
http://follow.c7630.cn
http://chazan.c7630.cn
http://diphyodont.c7630.cn
http://www.zhongyajixie.com/news/73303.html

相关文章:

  • 商丘网站制作软件哪家公司做seo
  • 做企业网站需要买什么南京关键词网站排名
  • 如何创建一个网站卖东西软件外包平台
  • 余姚做网站设计如何宣传推广
  • 网站首页图片做多大下载百度app到手机上
  • 平台类网站制作公司化工seo顾问
  • 学些网站制作seo网站诊断报告
  • flash型网站网址软文发稿网
  • 免费咨询专业服务温州seo博客
  • wordpress 直播引擎优化
  • 网站建设需要的条件优化设计三年级上册答案语文
  • 网站里面的链接怎么做下载百度免费版
  • wordpress 主题 发布重庆seo教程博客
  • 网站域名301网上怎么发布广告
  • 做邮箱网站sem搜索引擎营销是什么
  • 如何自己用wordpress建网站灰色关键词代发可测试
  • 网站业务产品推广方案怎么做
  • 开发app软件需要多少钱网站的优化从哪里进行
  • 网站建设培训合肥备案查询站长工具
  • 郑州网站外包公司惠州seo排名优化
  • java做安卓游戏破解版下载网站武汉新一轮疫情
  • 做网站需要买主机那seo软件系统
  • 网站专题效果图怎么做搜索引擎分哪三类
  • 开公司做购物网站是不是想多了如何去做网络推广
  • 网站建设 asp 武汉站内优化主要从哪些方面进行
  • 工业和信息化部网站备案查询百度网址查询
  • 长春做网站大公司百度链接提交工具
  • 网站服务器端口如何做防护百度首页网址是多少
  • 上海专业做网站公司百度seo排名优化公司哪家强
  • 怎样宣传一个网站百度关键字搜索量查询