visual-c++-2010
How to get string with pattern from std::regex in VC++ 2010
Can I get the string with regular expression from std::regex? Or should I save it somewhere else if I want to use it l开发者_高级运维ater?[详细]
2023-01-31 10:28 分类:问答VS 10 includes, and I have a linker error
I am using Visual Studio 10 to program in C++ The 1st part of my program is //Includes //#include <LEDA\\numbers>//fatal error C1083: Cannot open include file: \'LEDA\\numbers\': No such file[详细]
2023-01-30 03:11 分类:问答std::vector of std::function
I have the following: typedef std::function<void(const EventArgs&)> event_type; class Event : boost::noncopyable[详细]
2023-01-30 02:49 分类:问答Performance compare (normal function call vs for_each+mem_fun vs lambda expression) in C++
Which is the best one (in performance) among these snippets? 1) for(list<Enemy*>::iterator iter = enemies.begin(); iter != enemies.end(); iter ++)[详细]
2023-01-28 21:27 分类:问答Which header file should I include for using _swprintf_s()?
When I used _swprintf(), it said it might be unsafe and I should use _swprintf_s instead. But when I used _swprintf_s(), it said[详细]
2023-01-28 06:23 分类:问答How do I make an SSL socket available between functions?
This is my class: class SSLIRC : public Bot { public: SSLIRC(void); void sockconnect(char*, int, bool); void sockwrite(char*);[详细]
2023-01-27 07:25 分类:问答Setting Default "Character Set" in new projects in Visual Studio
I wanted set my ne开发者_运维知识库w projects in Visual Studio (2010) to have the \"Character Set\" to be set to \"Not Set\" instead of the current default of \"Unicode\".[详细]
2023-01-26 11:22 分类:问答Visual C++ 2010 std::set find broken
I\'m changing over from Visual Studio 2008 -> 2010 and I\'ve come across a weird bug in my code when evaluating a find on a std::set of pointers.[详细]
2023-01-26 09:26 分类:问答VC++ 10 complains that a lot of types are not defined, C99
I\'m trying to compile an open source project I downloaded which was apparently written in VC++ 7.1. After a lot of trouble, being a novice at C++, I managed to download and fix in开发者_StackOverflo[详细]
2023-01-23 01:58 分类:问答Does Visual C++ 2010 support the C++11 threads library?
I am using Visual C++ 2010.Does it support the C++11 threads library, such that I could compile the code in this开发者_StackOverflow question?[详细]
2023-01-21 01:15 分类:问答