C++模板类使用(创建链表)
首先说一下,本人要做一个简单的链表,然后用到了模板类,但是在编译的时候报错,原因是匹配不到函数,具体代码如下,还有其他的函数也是相同的问题。 拜托各位路过的高手提点一下。 头文件SLList.h #ifndef SLLIST_H_INCLUDED #define SLLIST_H_INCLUDED #include <iostream> usin……
c++11 关于 std::condition_variable 的问题
先上代码 // 线程函数 void ThreadFunction(int iID, std::mutex& Lock, std::condition_variable& rStart) { std::unique_lock<std::mutex> unqLock(Lock); rStart.wait(unqLock); pr……
小型教师与干部信息管理系统 C++
题目要求:分别定义Teacher(教师)类和Cadre(干部)类,采用多重继承方式由这两个类派生出新类Teacher_Cadre(教师兼干部)。要求: (1) 在两个基类中都包含姓名、年龄、性别、地址、电话等数据成员。 (2) 在Teacher类中还包含数据成员title(职称),在Cadre类中还包含数据成员post(职务),在Techear_Cadre类……
求帮助:本人的 dll 中的字符串数组调用总是得不到正确的值,请帮本人看看啊,谢谢
讨教: // iTween.cpp : 定义 DLL 应用程序的导出函数。 #ifdef ITWEEN_EXPORTS #define DLL_API __declspec(dllexport) #else #define DLL_API __declspec(dllimport) #endif int groupID = 0xC154; char dogO……
大家好!申请了C++小版版主,以后与大家在论坛中共同成长,请大家多多关照,谢谢
为了避免灌水之闲,问一个问题: c++11中的memory_order( memory_order_relaxed, memory_order_consume, memory_order_acquire, memory_order_release, memory_order_acq_rel, memory_order_seq_cst) 的使用、注意事项、遇到……
const char*的问题
都说const char *定义了字符串,就不能再改变了,但是为什么本人在vs2012中这么写也不会报错呀? const char *str="hello"; str="hi"; 但是假如是const int的话就报错了 const int i=5; i=10; 这是为啥呢? 解决方案 60 const char *str 是指针指向的内容是常量,但指针……
const char*到int怎么转化或赋值
char l_IdentBuffer[1]= {"\0"}; int l_Sign = 0; char *l_Identification = (char*)getdata->pGetNo(10, size, type); memcpy(l_IdentBuffer,l_Identification +61 ,1); printf("l_Identif……