Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
java x 8
Member Avatar for q8z

how can I know how many time the system.gc will take? how many time it take in the most of the times?

Member Avatar for alpha_foobar
0
76
Member Avatar for q8z

the object is not thread and he had a data about the number of threads and he have data on the result from the internet and all the threads get an manager object - new thread(this); I call it from the manager

Member Avatar for DavidRyan
0
56
Member Avatar for q8z

i have a program with 1 thread that run all the time and after I make connection to the internet - my memory get bigger with more than 25000 bytes and it all the time grow how can I make it smaller?

Member Avatar for DavidRyan
0
74
Member Avatar for q8z

i have picture that when i go right created communication to the internet in order to import new data. the communication to the internet blows the movement on the screen. how can I set low Priority to the internet thread - i use this: thread.setPriority(1); but it not help - …

Member Avatar for hooknc
0
81
Member Avatar for q8z

this is the wat i make new thread: public void startThread(){ if (threadIsActivate==false){ new myThread(this); threadIsActivate = true; } } and this is my constructor : public myThread(Object o) { this.o = o; Thread thread = new Thread(this); thread.start(); } //in object the thread make changes all the time after …

0
45
Member Avatar for q8z

//this is my thread: public class threadMoveRight implements Runnable{ Storeroom sto = new Storeroom(); String url; Image image1; boolean flag; public threadMoveRight(String purl,Image pImage) { this.url = purl; this.image1 = pImage; } public void run() { searchData(); flag = true; } } //and after the user press on right he …

Member Avatar for MattEvans
0
420
Member Avatar for q8z