Forum: Java 13 Days Ago |
| Replies: 1 Views: 167 Hello
We runing rmi client and server from one computer the code files in the same directory
javac *java
rmic FileImpl
start rmiregistry
java -Djava.security.policy=policy.txt FileServer
... |
Forum: C++ Oct 2nd, 2009 |
| Replies: 0 Views: 194 Hello
I work with g++ on ubuntu 9.04
Here is a code from cpp file:
for(subPipelineStrings::iterator pipelineIterator = pipelineRange.first;
pipelineIterator !=... |
Forum: C++ Sep 13th, 2009 |
| Replies: 2 Views: 562 #include<iostream>
using namespace std;
struct Base{
virtual void print(){cout << "Base"<< endl;}
};
struct Derrived : Base{
void print(){cout << "Derrived"<< endl;} |
Forum: C++ Sep 13th, 2009 |
| Replies: 3 Views: 528 Yes we are.
Could you help us out? |
Forum: C++ Sep 13th, 2009 |
| Replies: 1 Views: 125 Hello
Can define template<int n> class myClass{...........}
can I define template <Base *b>
class myTemp{
.............
}
while class Base
is defined properly.
Thank you. |
Forum: Computer Science Sep 10th, 2009 |
| Replies: 3 Views: 342 HALT is in RE and this language is not |
Forum: Computer Science Sep 10th, 2009 |
| Replies: 3 Views: 342 L = {<M>|L(M) contains all even legth words}
How can I show that L is not in RE? |
Forum: C++ Aug 21st, 2009 |
| Replies: 2 Views: 340 Hello i have two questions
1.
I have vector that I have delete several members from it after I do it I have a problem to access other member because index if other members has changed. What is the... |
Forum: C++ Aug 16th, 2009 |
| Replies: 3 Views: 213 Hello
I need a database
1)I need easily to find a minimal value in the database
2)I want to easily add and remove values(well its trivial I know)
I tried to use STL map but I couldn't find an... |
Forum: Computer Science Jul 4th, 2009 |
| Replies: 3 Views: 485 Hello
In many OOP languages "this"(or something similar) is used to point to current object. But i think its an object by itself. Here is what i found" polymorphic object which can point in... |
Forum: C++ May 31st, 2009 |
| Replies: 4 Views: 244 Thank you very much it worked!!! |
Forum: C++ May 31st, 2009 |
| Replies: 4 Views: 244 It my need really...
Actually the strings s1,s2 are generated in some other function in dynamic way.
Please help me if you can |
Forum: C++ May 31st, 2009 |
| Replies: 4 Views: 244 typedef
vector<string> pipeline;
typedef
vector<pipeline> subPipelineStrings;
subPipelineStrings* m_subPipelineStrings
m_subPipelineStrings =
new subPipelineStrings(3);
string *s1 = new... |