Search found 9 matches
- Sat Oct 02, 2004 10:49 pm
- Forum: Java
- Topic: Memory usage in Java
- Replies: 1
- Views: 2121
You consider Java an overhead-free language. This is not true. There is runtime data associated with each object. That data is usually needed for garbage collector, reflection, casts, virtual tables etc. This is what you don't see, but what JVM needs when it executes your program. You can ask the ...
- Mon Sep 27, 2004 10:29 pm
- Forum: Volume 104 (10400-10499)
- Topic: 10401 - Injured Queen Problem
- Replies: 19
- Views: 21637
Re: 10401
Never mind. I found it.
- Mon Sep 27, 2004 11:34 am
- Forum: Volume 104 (10400-10499)
- Topic: 10401 - Injured Queen Problem
- Replies: 19
- Views: 21637
10401
Could you help me with this problem? I receive SIGABRT. Obviously one of the asserts fires. If I remove all asserts I get SIGSEGV which is what I expect. But I can't see how any input can lead to SIGABRT. I tried different input parameters but I couldn't find any that can crash this program.
[cpp ...
[cpp ...
- Sun Sep 26, 2004 10:37 am
- Forum: C++
- Topic: C++ compiler ?
- Replies: 2
- Views: 2365
- Fri Apr 30, 2004 9:28 am
- Forum: C++
- Topic: same env as judge...
- Replies: 12
- Views: 4090
- Mon Jun 30, 2003 11:20 am
- Forum: C++
- Topic: Is namespace __gnu_cxx (using g++ > 3) permitted ?
- Replies: 5
- Views: 3151
- Mon Jun 30, 2003 1:14 am
- Forum: C++
- Topic: Is namespace __gnu_cxx (using g++ > 3) permitted ?
- Replies: 5
- Views: 3151
- Sun Jun 29, 2003 10:47 am
- Forum: C++
- Topic: What version g++ is used?
- Replies: 1
- Views: 1987
What version g++ is used?
Hi,
The following code which compiles just fine with g++ 3.2 gives me an error from the Valladolid compiler:
01688991_24.c: In function `void print(ostream &, double, int)':
01688991_24.c:21: `::ios_base' undeclared (first use here)
01688991_24.c:21: parse error before `::'
[cpp]#include ...
The following code which compiles just fine with g++ 3.2 gives me an error from the Valladolid compiler:
01688991_24.c: In function `void print(ostream &, double, int)':
01688991_24.c:21: `::ios_base' undeclared (first use here)
01688991_24.c:21: parse error before `::'
[cpp]#include ...
- Sun Jan 12, 2003 12:32 pm
- Forum: Volume 103 (10300-10399)
- Topic: 10377 - Maze Traversal
- Replies: 26
- Views: 14451
10377 getting TLE!? What's wrong???
My program works correctly on sample input, but it gets "wrong output" if I submit it. what could be wrong? Are there any special cases not described clearly?