Tagged Questions

0
votes
4answers
169 views

static method with polymorphism in c++

hi, I have a weird issue using polymorphism. I have a base class that implements a static method. This method must be static for various reasons. The base class also has a pure virtual method run() …
0
votes
1answer
86 views

java 1.4 :how to insert multiple records in a database with one single hit using executeBatch?

i am reading records data from a file(records count can be up to thousands ).Now i want to insert each record in to database.I want to insert all of records in one hit to reduce performance hit. If i …
-2
votes
4answers
256 views

Java Thread using static or non-static nested class

I've encountered a very strange problem. My program looks like this: class Outter{ class Inner extends Thread { public void run(){ // do something } …
1
vote
4answers
292 views

Static vs. non-static method 2 [closed]

Possible Duplicate: Static vs. non-static method which one is better for a good design or are there any difference? or is it just up to the developer? class Foo { int x; void …
0
votes
4answers
1k views

What does “operator = must be a non-static member” mean? (C++)

I'm in the process of creating a double-linked list, and have overloaded the operator= to make on list equal another: template<class T> void operator=(const list<T>& lst) { …
1
vote
1answer
133 views

Static Web Service over non-static

Currently I have a web service (WCF) that exposes methods that are set to static. From a strictly memory/GC perspective, what is different in how the CLR and GC handle static versus non-static …
0
votes
2answers
120 views

Modifying a non-static object from a static method.

Hi, I'll first tell you what I am trying to do, and then how I am trying to do it. If there is a better way please let me know. I am working with two forms - lets call them form_main and …
3
votes
7answers
2k views

What Cases Require Synchronized Method Access in Java?

In what cases is it necessary to synchronize access to instance members? I understand that access to static members of a class always needs to be synchronized- because they are shared across all …