入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
12
2017-08
微信端下载文件 2017-08-12
js部分: $(function(){getReports(); }) function getReports(){ $.ajax({//获取默认列表内容 //通过json形式查询出所有的信息       url: basePath+"/map/findreports.html", 

			
				微信开发第四篇 怎么查看公众微信号开发文档
微信开发第四篇 怎么查看公众微信号开发文档 2015-08-28
上篇介绍了如何用微信在线调试工具,下面了解一下怎么查看微信公众号开发文档。 同样是在开发者中心开发者工具里面有个开发文档点击 还是开
09
2012-07
C语言中的typeof关键字 2012-07-09
typeof关键字是C语言中的一个新扩展。 typeof的参数可以是两种形式:表达式或类型。 下面是使用表达式的的例子:     typeof(x[0](1) 这里假设x是一
28
2013-08
C++ 下 typeof 的实现 2013-08-28
现在我们有这样一坨代码: std::vector arr; // ... for(std::vector::iterator iter = arr.begin(); iter != arr.end(); ++iter) { // ... } 其中难看而又不好维护的std::vector
22
2013-07
C++ typeof基本应用方式解析 2013-07-22
一、基本用法。 1、C++ typeof表达式。 以下是它列出的用法: a、取表达式的值的类型: template function operator*(A a, B b) -> typeof(a*b); // return type 
09
2012-07
c++ typeof 2012-07-09
C/C++语言中的typedef相信大家已经不陌生,本文对C/C++语言关键字typedef的各种用法作一个介绍。 typedef,顾名思义,为“类型定义”,可以解释为:将
08
2014-05
google-breakpad在 C++11下编译错误 ISO C++ forbids declaration of ‘typeof’ with no type 2014-05-08
参考https://code.google.com/p/google-breakpad/issues/detail?id=481 ISO C++ forbids declaration of ‘typeof’ with no type typedef ‘google_breakpad::typeof’ is initialized (use decltype i
09
2013-07
codeblocks快速注释多行 2013-07-09
ctrl+shift+c可以快速注释掉多行。 ctrl+shift+x可以取消注释,才发现,哈哈真方便。 阅读更多
04
2012-08
几种获取request,session方法 2012-08-04
struts2中几种获得request,session等对象的方法 1、通过ActionContext来获得举例代码如下:   情况1:    ActionContext context = ActionContext.getContext();    Map
04
2015-07
获取session的几种方式 2015-07-04
获取Session的方式: 1、ActionContext ActionContext.getContext().getSession() 返回类型为Map 2、ServletActionContext ServletActionContext.getRequest().getSession() 返回类型为Htt