Questions tagged [objectinstantiation]
92 questions
-2
votes
1 answer
Class template instantiation errors
The .hpp file below compiles without any errors or warnings:
#ifndef CODE_HPP
#define CODE_HPP
#include
#include
using std::vector;
using std::array;
//stack template definition
template>
class…

Vinod
- 925
- 8
- 9
-2
votes
1 answer
unable to instantiate a user defined class in java
I am unable to instantiate a user defined class. I am writing a servant class for RMI server wherein I am trying to instantiate another class. PFB a small extract of my code
public void subscribe(String user, String stockSym)throws RemoteException…
user4205325