入门客AI创业平台(我带你入门,你带我飞行)
博客笔记

			
				程序员小白入行区块链的六种方式
程序员小白入行区块链的六种方式 2018-03-23
区块链大本营编译战队出品参与 | Guoxi、波波全球最大的软件外

			
				2018区块链整体架构及应用
2018区块链整体架构及应用 2018-04-03
原文链接地址:http://mp.weixin.qq.com/s?__biz=MzI2NjA3NTc4Ng==&mid=2652080038&idx=1&sn=8117e3e7ef658a0503f864414b5a1429&chksm=f1748c43c6030555fb83982fe88056d86791ce89b1e365503774aa982deeab6
 alt=
区块链数据库 2017-07-19
区块链是互联网未来十年中举足轻重的技术 区块链(Blockchain),或者说分布式账本(DLT, Distributed Ledger Technology)最早是起源于比特币的一个重要
27
2018-01
区块链技术笔记一 2018-01-27
一、区块链技术是什么? 一句话概括,如果互联网技术解决的是通讯问题的话,区块链技术解决的是信任问题。 出于对人性堕落的失望,我和A决定
19
2017-03
C++中3种方式把字符串和数字连接起来 2017-03-19
以前老用Java里面的String类,用过的人都知道好舒服,连接字符串和数字只需要用一个 + 号就可以了。在这里真的想把C++中string类+号功能加强一下。希望有能力
18
2016-08
C/C++ 连接两个字符串 2016-08-18
一: C风格字符串连接#include using namespace std;int main(){  const char *str = "hello ";  const char *str2 = "world";  const size_t len = strlen(str)+strlen(str2);  char *n_
11
2016-09
C++ string类和字符串的访问和拼接操作 2016-09-11
转载请标明出处: http://blog.csdn.net/u011974987/article/details/52504486 本文出自:【徐Xiho的博客】 C++ 增强了对字符串的支持,除了可以使用c中的字符串,还

			
				C++字符串拼接
C++字符串拼接 2017-03-16
输入:两个字符串char* ch1,ch2 输出:ch1与ch2拼接在一起的字符串char* ch3 #include "stdafx.h" #include using namespace std; int main() { char *ch1 = "link "; char *ch2 =
14
2015-09
C++ 拼接字符串的两种方法 2015-09-14
#include #include #include #include #include using namespace std; template string toString(const T& t,const int w=0) { stringstream ss; string str; ss

			
				C++之string的拼接
C++之string的拼接 2017-04-04
字符拼接可以采用的方法:1、多个字串拼接时用+操作符1)代码:如果不加红色部分的代码,则需要采用_sntprintf代替sntprintf。[cpp] view plain copy#includ