错误信息如下: Caused by: com.opensymphony.xwork2.config.ConfigurationException: Bean type class com.opensymphony.xwork2.ObjectFactory with the name struts h ...
分类:
编程语言 时间:
2018-11-29 11:12:05
阅读次数:
153
pragma 的使用 我们经常用到的是 pragma comment(lib," .lib")这类的。 pragma comment(lib,"Ws2_32.lib")表示链接Ws2_32.lib这个库。 和在工程设置里写上链入Ws2_32.lib的效果一样,不过这种方法写的 程序别人在使用你的代码 ...
分类:
其他好文 时间:
2018-11-27 19:17:47
阅读次数:
144
<% response.setHeader("Cache-Control","no-store"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader("Expires", 0) ...
分类:
其他好文 时间:
2018-11-24 18:52:24
阅读次数:
195
"原题传送门" 莫队入门题 "我博客里对莫队的介绍" 很多人说这题卡莫队,但窝随便写了一个程序就过了qaq~~(虽说开了氧化)~~ 我们在排序询问时,普通是这样qaq 剩下我们就按照莫队的板子模拟就行啦qaq 完整代码: cpp pragma GCC optimize("O3") include d ...
分类:
其他好文 时间:
2018-11-22 21:41:50
阅读次数:
124
html <meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Cache-control" content="no-cache"><meta htt ...
分类:
Web程序 时间:
2018-11-20 11:35:55
阅读次数:
258
pragma solidity ^0.4.4; contract funder{ //0xca35b7d915458ef540ade6068dfe2f44e8fa733c //0x14723a09acff6d2a60dcdf7aa4aff308fddc160c :10 //0x583031d1113... ...
分类:
其他好文 时间:
2018-11-19 20:21:00
阅读次数:
156
VS 2015 compiling cocos2d-x 3.3 error “fatal error C1189: #error: Macro definition of snprintf conflicts with Standard Library function declaration”; ...
分类:
其他好文 时间:
2018-11-18 22:35:53
阅读次数:
287
pragma solidity ^0.4.0; contract byte1{ /* 固定大小字节数组(Fixed-size byte arrays) 固定大小字节数组可以通过bytes1,bytes2...bytes32声明,byte=byte1 bytes1 只能存储1个字节,也就是二进制的8位... ...
分类:
编程语言 时间:
2018-11-16 18:24:17
阅读次数:
249
pragma solidity ^0.4.0; contract modifierTest{ bytes32 public blockhash; address public coinbase; uint public difficulty; uint public gaslimit; uint p... ...
分类:
其他好文 时间:
2018-11-15 17:19:16
阅读次数:
230
pragma solidity ^0.4.0; // priveta public internal contract Test{ uint public _age; function Test(uint age){ _age = age; } function f(){ modify(_age);... ...
分类:
其他好文 时间:
2018-11-13 16:12:03
阅读次数:
165