C++学习笔记
Posted Geography爱好者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习笔记相关的知识,希望对你有一定的参考价值。
1、long类型到char类型转换
long a=1; char * objid=(char *)malloc(10*sizeof(char)); //分配内存 sprintf(objid,"%d",a);
2、拼接char字符串
long aa=pFeature->GetFID(); char * objid=(char *)malloc(10*sizeof(char)); //分配内存 sprintf(objid,"%d",aa); const char * pointid=fea->GetFieldAsString("管线编号"); char sql[200]="update point set 对应管线=‘"; strcat(sql,pointid); strcat(sql,"‘ where OBJECTID="); strcat(sql,objid);
以上是关于C++学习笔记的主要内容,如果未能解决你的问题,请参考以下文章