《STL源码剖析》简单空间配置器的例子为什么编译不能通过?

jjliuimu 2003-09-21 11:44:57
//file in jjalloc.h
#ifndef _JJALLOC_
#define _JJALLOC_

#include<new> //for placement new
#include<cstddef> //for ptrdiff_t, size_t
#include<cstdlib> //for exit()
#include<climits> //for UINT_MAX
#include<iostream> //for cerr

namespace JJ
{
template <class T>
inline T* _allocate(ptrdiff_t size, T*){
set_new_handler(0);
T* tmp = (T*) (::operator new ((size_t)(size*sizeof(T))));
if(tmp == 0){
cerr << "Out of memory"<<endl;
exit(1);
}
return tmp;
}
template <class T>
inline void _deallocate(T* buffer){
::operator delete(buffer);
}
template <class T1,class T2>
inline void _construct(T1 *p, const T2& value){
new(p) T1(value);
}
template <class T>
inline void _destroy(T* ptr){
ptr->~T();
}
template <class T>
class allocator{
public:
typedef T value_type;
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
typedef size_t size_type;
typedef ptrdiff_t difference_type;

template <class U>
struct rebind{
typedef allocator<U> other;
};
pointer allocator(size_type n, const void* hint=0){
return _allocate((difference_type)n,(pointer)0);
}
void deallocate(pointer p,size_type n){
_deallocate(p);
}
void construct(pointer p,const T& value){
_construct(p,value);
}
void destroy(pointer p){
_destroy(p);
}
pointer address(reference x){
return (pointer)&x;
}
const_pointer const_address(const_reference x){
return (const_pointer)&x;
}
size_type max_size() const{
return size_type(UINT_MAX/sizeof(T));
}
};
} //end of namespace JJ
#endif
//file in jjalloc.cpp
#include "jjalloc.h"
#include<vector>
#include<iostream>
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
using namespace std;
#endif
int main(){
int ia[5] = {0,1,2,3,4};
unsigned int i;
vector<int,JJ:allocate<int> > iv(ia,ia+5);
for(i=0;i<iv.size();i++)
cout << iv[i] <<' ';
cout << endl;
}
提示编译的错误是
Compiling...
jjalloc.cpp
c:\stl\allocator\jjalloc.h(49) : error C2533: 'allocator<T>' : constructors not allowed a return type
c:\stl\allocator\jjalloc.h(70) : see reference to class template instantiation 'JJ::allocator<T>' being compiled
c:\stl\allocator\jjalloc.h(49) : error C2533: 'allocator<T>::allocator<T>' : constructors not allowed a return type
c:\stl\allocator\jjalloc.h(70) : see reference to class template instantiation 'JJ::allocator<T>' being compiled
c:\stl\allocator\jjalloc.h(52) : error C2061: syntax error : identifier 'poniter'
c:\stl\allocator\jjalloc.h(70) : see reference to class template instantiation 'JJ::allocator<T>' being compiled
c:\stl\allocator\jjalloc.cpp(10) : error C2882: 'JJ' : illegal use of namespace identifier in expression
c:\stl\allocator\jjalloc.cpp(10) : error C2143: syntax error : missing ',' before ':'
c:\stl\allocator\jjalloc.cpp(10) : error C2143: syntax error : missing ',' before ')'
c:\stl\allocator\jjalloc.cpp(11) : error C2143: syntax error : missing ')' before ';'
c:\stl\allocator\jjalloc.cpp(11) : error C2059: syntax error : ')'
c:\stl\allocator\jjalloc.cpp(14) : error C2143: syntax error : missing ';' before '}'
c:\stl\allocator\jjalloc.cpp(15) : error C2143: syntax error : missing ';' before '}'
c:\stl\allocator\jjalloc.cpp(15) : fatal error C1001: INTERNAL COMPILER ERROR
(compiler file 'Y?, line 1)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Error executing cl.exe.

jjalloc.exe - 11 error(s), 0 warning(s)
请教各位大侠,小弟初学先谢了!
...全文
131 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
magicblue 2003-09-22
  • 打赏
  • 举报
回复
打字打错了,自己慢慢检查
sevecol 2003-09-22
  • 打赏
  • 举报
回复
还有就是这个版本的Allocator好象不能在VC带的STL运行.
sevecol 2003-09-22
  • 打赏
  • 举报
回复
几个基本的错误:

1
pointer allocator(size_type n, const void* hint=0)
{
return _allocate((difference_type)n,(pointer)0);
}
构造函数没有返回值

2
JJ:allocate<int>
该成
JJ::allocator<int>
晨星 2003-09-22
  • 打赏
  • 举报
回复
编译器不是把错误原因都给出来了吗?一个一个排除呀。
jjliuimu 2003-09-22
  • 打赏
  • 举报
回复
谢谢,楼上各位了,昨天加了一天班,还被拉出去喝点酒有点晕了。
Wolf0403 2003-09-21
  • 打赏
  • 举报
回复
自己翻译一下就全部明白了

24,854

社区成员

发帖
与我相关
我的任务
社区描述
C/C++ 工具平台和程序库
社区管理员
  • 工具平台和程序库社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧