本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- arpenker
- tanling8334
- 龙儿筝
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
C Sharp爬虫程序配置代理流程
// 要访问的目标页面
string targetUrl = "http://httpbin.org/ip";
// 代理服务器
string proxyHost = "http://t.16yun.cn";
string proxyPort = "6447";
// 代理隧道验证信息
...
tf使用model的helloworld
yum install automake autoconf libtool libicu gcc-c++
####yum install bazel -y 这样安装版本过新会报错:
lease downgrade your bazel installation to version 0.26.1 or lower to build TensorFlow
yum -y install epe ...
c++11的function和bind
参考:https://www.cnblogs.com/bencai/p/9124654.html
使用g++ -std=c++11 some.cpp 编译
c++的helloworld
#include <iostream>
using namespace std;
int main(int argc,char **argv)
{
...
C++函数中的静态变量
在C++中,可以在成员函数中使用静态变量,从而间接达到在hpp中定义属于某个类的静态变量的目的(无需再在cpp文件中初始化)
然而,这中方案在速度上会有一定的损耗。
1、该变量首次使用时才进行初始化
When do function-level static variables get allocated/initialized?:https://stackoverflow.com/question ...