`
mr.lili
  • 浏览: 152154 次
  • 性别: Icon_minigender_1
  • 来自: 成都
文章分类
社区版块
存档分类
文章列表

vc++ 宏

//Test9.h #ifndef _TEST9_ #define _TEST9_ #pragma once   //保证头文件被编译一次 #pragma message("编译Test9.h文件") //#pragma comment("aaaaaaaaaa") #define Test //宏定义一个test #define Test2 1 //宏定义一个true或false(0/1) #define Test3 2 //宏定义一个数据(1,2,3) #define Test4 "bbb" //宏定义字符串("aaa& ...
我们在做arcgis for js API离线包部署时,会根据官网提供的部署步骤 http://mr-lili-1986-163-com.iteye.com/admin/blogs/1870157 将[HOSTNAME_AND_PATH_TO_JSAPI]修改为 自己 的 ip地址。 当我们将 离线包部署在 局域网,并对相关引用的js 封装成  如百度 JS API 引用一样( <script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&se ...
在做arcgif for js 的地图应用时,如果想做:点、线、面 缓冲区的查询,如果查询的点位条件过多就需要设置proxy.jsp. 在proxy.jsp里有 <%!String[] serverUrls = { //"<url>[,<token>]" //For ex. (secured server): "http://myserver.mycompany.com/arcgis/rest/services,ayn2C2iPvqjeqWoXwV6rjmr43kyo23mhIPnXz2CEiMA6rVu0xR0St8gKs ...
根据网上查找的arcigs for js 1.5例子,可以测试出画面的面积和长度,但换成3.4版本后,根据官网例子做就不能计算,计算出的结果有误。 可查看博客 http://blog.csdn.net/ni_meri/article/details/8095844 也可以查看代码: var areasAndLengthParams = new esri.tasks.AreasAndLengthsParameters();            // areasAndLengthParams.lengthUnit = esri.tasks.GeometryService.UNIT_KILOME ...
本人接触arcgis不久,现就arcgis 基于tomcat搭建离线argis for js API进行描述,以帮助搭建java工程的朋友。 一、下载离线JS API,本人下载的是arcgis_js_v34_api.zip  可在:http://support.esrichina.com.cn/2011/0223/960.html进行下载 Library | SDK  new 二、下载eclispe for javaee ,并打开eclipse for jee创建web工程(本节基于会javaee开发的人员,不会的可以去找相关javaee开发资料),工程名为arcgis 三、将下载下来的a ...
需要quartz-1.6.5.jar 一、spring配置文件里: <!--定时器-->    <!-- 定时任务的工作Bean -->      <bean id="quartzJob" class="com.csidc.as.service.impl.EmpService" />            <!-- 定义生成工作对象的工厂,并为工厂设定目标对象targetObject属性、目标对象的工作方法targetMethod属性 -->  <!--    <bean id=&quo ...
在网上趁晚上下班有空,查找该手机相关ROM,在网上下载了很多ROM,但有些刷不起,那是因为没有用 C8600中文Recovery版本4.0.1.4刷机程序  ,没升级Recovery 我手上有C8600中文Recovery版本4.0.1.4刷机程序,ROM2.3.7 有点大,需要用的朋友可以联系我QQ:908925859 也可以google.com.tw上去查找 也可以在 http://bbs.189store.com/thread-14866-1-1.html   下载Recovery4.0.1.4 http://www.rom.sx/index.html  下载ROM 
4、在C++ 程序中调用被 C编译器编译后的函数,为什么要加 extern “C”? (5分) 答:C++语言支持函数重载,C语言不支持函数重载。函数被C++编译后在库中的名字与C语言的不同。假设某个函数的原型为: void foo(int x, int y); 该函数被C编译器编译后在库中的名字为_foo,而C++编译器则会产生像_foo_int_int之类的名字。 C++提供了C连接交换指定符号extern“C”来解决名字匹配问题 五、编写strcpy函数(10分) 已知strcpy函数的原型是 char *strcpy(char *strDest, const char *str ...
http://topic.csdn.net/u/20100711/16/34BFD4BD-1154-4B0C-A77D-DDDDC5F75641.html http://topic.csdn.net/u/20100409/23/96D136CE-B174-467F-97FF-AE481E212A60.html#r_64559185 http://topic.csdn.net/t/20020518/11/732433.html#r_4799323 http://topic.csdn.net/t/20031123/15/2485955.html#r_17363250 关于内存分配方式 C++中的空类 ...
@echo off title 关闭本计算机 :: color E :: shutdown /f /s /t 0 关闭 rem shutdown /f /r /t 0 重启 rem at 1 /delete 删除任务 e: cd \workProject\VersionCheck\迭代\Code\release echo 循环 rem for in(1,1,5) 表示 do里执行5次 for /l %%i in (1,1,50) do ( echo 比较开始 VerCheckCmd.exe -b "E:\tar\cm\iManagerM2000_DBS3900LTE_MATCH_ENG ...

c++ 多态2

void printStr2 (std::pair<std::string,float> score1) //打印字符串 { cout << score1.first<<":"<<score1.second <<"\t"; } //   定义两个重载函数   int my_add(int a,int b)   {   return a+b;   }   int my_add(int a,std::string b)   {   return  a + atoi(b.c_str( ...

c++ 多态

//#ifndef _EXRTENDS_H_ //引用出处:http://topic.csdn.net/u/20070123/10/6A1EF284-8EE1-417F-82B0-2E05F207464F.html#r_39020250 #include "stdafx.h" #define _EXRTENDS_H_ //WIN32_LEAN_AND_MEAN #include <windows.h> #include <TlHelp32.h> #include <stdio.h> #include <stdlib.h> #i ...
/*cout<<"拆分字符串,装入vector:"<<endl; std::vector<std::string>vec; char ch[]="hello, I love you"; char *p; p=strtok(ch,","); while(p!=NULL) { vec.push_back(p); p = strtok (NULL," ,"); } for(int i= 0; i!=vec.size();++i) { cout<< ...
int _tmain(int argc, _TCHAR* argv[]) { cout<<">>>>>>>>>>"<<endl;     //二维数组改变值返回 /*cout<<"二维数组改变值返回:"<<endl; int iHeight = 5; int iWidth = 3; int* Arr2D = new int[iWidth*iHeight];    //建连续空间放二维数组 int** Arr2tmp = new int* ...
#include "stdafx.h" #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <TlHelp32.h> #include <stdio.h> #include <stdlib.h> #include <iostream> //#include   <unistd.h> #include <sys/types.h> #include <signal.h> #include<string> ...
Global site tag (gtag.js) - Google Analytics