因为ASP.NET缓存没更新的问题(我的就是这个问题,电脑突然死机导致的)。
把这个目录下的文件全部删除C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files,重新编译生成就没问题了。...
分类:
其他好文 时间:
2015-08-14 10:04:12
阅读次数:
166
vs2015 编译报错 CS1003 Syntax error
分类:
其他好文 时间:
2015-08-13 17:28:49
阅读次数:
937
The method XXX is ambiguous for the type XX
eclipse编译报错。
分析原因:方法歧义,是编译器无法确定,代码中使用哪一个方法。
1、调用的是自己编写的方法
public class Ambiguous {
public static void main(String[] args) {
Ambiguous ambi...
分类:
编程语言 时间:
2015-08-12 19:29:11
阅读次数:
1039
在编译RegexKitLite的时候,报错如下:Undefined symbols for architecture i386:"_uregex_open", referenced from:_rkl_getCachedRegex in RegexKitLite.o"_uregex_groupCou...
分类:
其他好文 时间:
2015-08-03 16:29:12
阅读次数:
131
第一个错误:
host Executable: cmu2nuance (out/host/linux-x86/obj/EXECUTABLES/cmu2nuance_intermediates/cmu2nuance)
/usr/bin/ld: cannot find -lncurses
collect2: ld returned 1 exit s...
分类:
移动开发 时间:
2015-08-01 17:26:15
阅读次数:
208
我的老项目是vs2010下的项目。最近安装vs2013后,打开sln解决方案,调试运行报错C:\Program Files (x86)\Windows Kits\8.0\Include\um\winsdkver.h(21): fatal error C1083: 无法打开包括文件:“winapifa...
分类:
Windows程序 时间:
2015-07-22 12:56:19
阅读次数:
4787
1.代码从windows复制过来编译报错处理,参考:http://www.360doc.com/content/13/1016/21/3884271_321966616.shtml2.编译lua-socket包时出错 2.1 错误消息undefined reference to `__stack_....
分类:
其他好文 时间:
2015-07-22 12:46:32
阅读次数:
2291
选iphone5可以正常编译运行但是5s和6和6s都会编译报错 解决办法是,Buildsettings里面把Architectures里面的$(ARCHS_STANDARD)去掉,加入armv7和armv7s两个。
分类:
其他好文 时间:
2015-07-21 22:13:15
阅读次数:
93
1. 指向指针的引用
#include
#include
using namespace std;
// int *&lhs 的定义应该从右向左理解:
// lhs 是一个引用,与指向 int 的指针相关联。
// 也就是说,lhs 是传递进 ptrswap 函数的指针的别名。
// 注意:不能这样定义:int &*lhs,编译报错提示为:cant declare pointer to “i...
分类:
其他好文 时间:
2015-07-20 16:36:50
阅读次数:
91
问题症状与解决在 Xcode 7 beta 3 (7A152u) 中创建 Swift 项目,并使用 CocoaPods 做依赖管理,编译时会遇到如下的报错:dyld: Library not loaded: @rpath/Pods.framework/Pods Referenced from: /....
分类:
其他好文 时间:
2015-07-19 23:32:39
阅读次数:
258