function SetHref(pdf) { var c = pdf.href; var d = "http://eds.jd.com"; var f = ""; var g = ""; if (c.indexOf('sites') > -1) { var e = c.split('/'); var i; for (i = 0; i < e.length; i++) { if (e[i] == "sites")…
用C++写程序,肯定要用预编译头文件,就是那个stdafx.h.不过我一直以为只要在.cpp文件中包含stdafx.h 就使用了预编译头文件,其实不对.在VC++中,预编译头文件是指放到stdafx.h中的头文件才会有效果.如下: file: stdafx.h // stdafx.h : include file for standard system include files, // or project specific include files that are used freque…
Visual C++ Concepts: Building a C/C++ ProgramCompiler Warning (level 1) C4627Error Message": skipped when looking for precompiled header useWhile searching for the location where a precompiled header is used, the compiler encountered an #include dire…