C ++ 98 (211 바이트) g ++-5 (우분투 5.2.1-23 우분투 1 ~ 12.04) 5.2.1 0151031
전 처리기를 전혀 사용하지 않고 C ++에서 얼마나 잘 할 수 있는지 알고 싶었습니다. 이 프로그램은 2,139,390,572 바이트의 출력을 생성하며, 대부분 단일 오류 메시지입니다.
template<int i,class S,class T>struct R{typedef R<i,typename R<i-1,S,S>::D,typename R<i-1,S,S>::D>D;};template<class S,class T>struct R<0,S,T>{typedef S D;};void f(){R<27,float,R<24,int*const*,int>::D>::D&E=4;}
me@Basement:~/src/junk$ ls -l a.C
-rw-rw-r-- 1 me me 211 Apr 27 21:44 a.C
me@Basement:~/src/junk$ g++-5 a.C -fmax-errors=1 2>a.C.errors.txt
me@Basement:~/src/junk$ ls -l a.C.errors.txt
-rw-rw-r-- 1 me me 2139390572 Apr 27 22:01 a.C.errors.txt
언 골프 드 :
template <int i, class S, class T>
struct R {
typedef R<i, typename R<i-1,S,S>::D, typename R<i-1,S,S>::D> D;
};
template <class S, class T>
struct R<0, S, T> {
typedef S D;
};
void f() {
R<27, float, R<24, int*const*, int>::D>::D &E = 4;
}
이 프로그램은 두 개의 R 사본을 포함하는 typedef D를 보유하는 재귀 적 struct 템플리트 R을 정의하여 작동합니다. 이로 인해 유형 이름이 기하 급수적으로 증가하여 오류 메시지에 완전히 인쇄됩니다. 불행하게도, g ++는 (1 << 31) 바이트보다 긴 오류 메시지를 인쇄하려고 할 때 질식하는 것 같습니다. 2,139,390,572 바이트는 넘어 가지 않고 한계에 도달 할 수있는 가장 가까운 바이트였습니다. 누군가가 재귀 제한과 매개 변수 유형 27, float, 24, int*const*
을 조정하여 제한에 가까워 지거나 더 긴 오류 메시지를 인쇄 할 수있는 컴파일러를 찾을 수 있는지 궁금합니다 .
오류 메시지에서 발췌 :
a.C: In function ‘void f()’:
a.C:1:208: error: invalid initialization of non-const reference of type
‘R<27, float, R<24, R<23, R<22, R<21, R<20, R<19, R<18, R<17, R<16, R<15,
R<14, R<13, R<12, R<11, R<10, R<9, R<8, R<7, R<6, R<5, R<4, R<3, R<2, R<1,
int* const*, int* const*>, R<1, int* const*, int* const*> >, R<2, R<1, int*
const*, int* const*>, R<1, int* const*, int* const*> > >, R<3, R<2, R<1,
int* const*, int* const*>, R<1, int* const*, int* const*> >, R<2, R<1, int*
const*, int* const*>, R<1, int* const*, int* const*> > > >, R<4, R<3, R<2,
R<1, int* const*, int* const*>, R<1,
...
int* const*, int* const*> > > > > > > > > > > > > > > > > > > > > > > >
>::D& {aka R<27, R<26, R<25, R<24, R<23, R<22, R<21, R<20, R<19, R<18,
R<17, R<16, R<15, R<14, R<13, R<12, R<11, R<10, R<9, R<8, R<7, R<6, R<5,
R<4, R<3, R<2, R<1, float, float>, R<1, float, float> >, R<2, R<1, float,
float>, R<1, float, float> > >, R<3, R<2, R<1, float, float>, R<1, float,
float> >, R<2, R<1, float, float>, R<1, float, float> > > >, R<4,
...
, R<1, float, float>, R<1, float, float> > >, R<3, R<2, R<1, float, float>,
R<1, float, float> >, R<2, R<1, float, float>, R<1, float, float> > > > > >
> > > > > > > > > > > > > > > > > > > > >&}’ from an rvalue of type
‘int’
template<int i,class S,class T>struct R{typedef R<i,typename
R<i-1,S,S>::D,typename R<i-1,S,S>::D>D;};template<class S,class T>struct
R<0,S,T>{typedef S D;};void
f(){R<27,float,R<24,int*const*,int>::D>::D&E=4;}
^
compilation terminated due to -fmax-errors=1.
2,139,390,572 바이트 / 211 바이트 = 10,139,291.8
gcc -Wall -pedantic
평범한 ol와 매우 다르다는 것을 의미 합니다. 다른 c 컴파일러와gcc
는 다를 수 있습니다tcc
.