0
votes
0answers
30 views

Can we use static functions in multithreading environment?

I'm new to Java and Selenium. In selenium test I want to check whether element is displayed before performing any action on it. I have written static function to check for element existence. I'll be ...
2
votes
7answers
122 views

Is this code multi-thread safe?

private static Map<Integer, String> map = null; public static String getString(int parameter){ if(map == null){ map = new HashMap<Integer, String>(); ...
2
votes
1answer
135 views

Using static class methods in multi-threaded programming

I am building a webcrawler which is using two classes: a downloader class and an analyzer class. Due to my design of the program I had some methods which I outsourced to a static class named utils ...
2
votes
5answers
438 views

thread safety of a static class

I want to create my own event system in my windows application in c#. To do this, i write the following class: internal class EventManager { private static List<EventRecord> s_listEvents = ...
-2
votes
2answers
1k views

No enclosing instance of type is accessible.

The whole code is: public class ThreadLocalTest { ThreadLocal<Integer> globalint = new ThreadLocal<Integer>(){ @Override protected Integer initialValue() { ...
0
votes
1answer
647 views

Thread static class methods vs global scope

Imagine a functionality of an application that requires up to 5 threads crunching data, these threads use buffers, mutex and events to interact with each other. The performance is critical, and the ...
0
votes
2answers
94 views

Are functions local to a cpp body thread safe? If so what about calling static functions from it?

I have a lot of multithreading bugs since I introduced a second worker thread. The issues are minor and hard to trace. My latest indications point to class MyOtherClass { static String ...
1
vote
2answers
191 views

Synchronization between static methods of a class

I've written the following code: public class ClassAndObjectLock { public static void main(String[] args) { new Thread(new EvenThread()).start(); new Thread(new OddThread()).start(); } } class ...
1
vote
2answers
664 views

run static method from a thread pool in java

What is the best way to run a static method in several threads, using a thread pool? Also I trying to pass an argument to the static method. something like Class A{ public static runTask(int i){ ...
4
votes
4answers
1k views

Does a static method share its local variables & what happens during concurrent usage from different threads?

C# Question - I'm trying to determine whether it is OK to use a static method where, within the method it does have some local variables it uses. Are the local variables "shared" across usages of the ...
7
votes
3answers
849 views

Threading and static methods in C#

Here is a meaningless extension method as an example: public static class MyExtensions { public static int MyExtensionMethod(this MyType e) { int x = 1; x = 2; ...
4
votes
3answers
379 views

C#: Do I need to lock a static class when accessing from separate threads?

I have a static class with a few methods that just take in a byte array, parses it, and returns a structure. I need to call these methods from many separate threads. Do I need a lock() or some kind of ...
1
vote
4answers
724 views

Static method,new thread performance question

Hey guys i just have two questions about two methods used in many controllers/servlets in my app: 1-what is the difference between calling a static method in a util class or a non static method (like ...
2
votes
8answers
5k views

Static method to be accessed by multiple threads, Java

I am using a third party library to do hand evaluation of 7 card poker hands. The method evaluate in this library is declared as public static and I believe it alters some global static arrays within ...
6
votes
3answers
691 views

Are static methods appropriate for a Linq To SQL DAL?

I'm using Linq to SQL for my DAL and have heard various things about using static methods in a web application (regarding threading/concurrency issues). At the moment, I created a test DAL, which ...
2
votes
7answers
302 views

Help reviewing the following code, is it thread safe?

private static Callback callback; public Foo() { super(getCallback()); } private static Callback getCallback() { callback = new Callback(); return callback; } Constructor Foo() can ...