Trending J2ME Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
Ahmed Gamal Ahmed's image
Question added by Ahmed Gamal Ahmed
8 years ago
Answers:
2
Followers:
Views:
667
Vote Count:
0
Answer should contain a minimum of 25 characters.
himanshu mittal's image
Question added by himanshu mittal
10 years ago
Answers:
4
Followers:
Views:
118
Vote Count:
0
Answer should contain a minimum of 25 characters.
himanshu mittal's image
Question added by himanshu mittal
10 years ago
Answers:
3
Followers:
Views:
142
Vote Count:
0
Answer should contain a minimum of 25 characters.
himanshu mittal's image
Question added by himanshu mittal
10 years ago
Answers:
1
Followers:
Views:
70
Vote Count:
0
Answer should contain a minimum of 25 characters.
himanshu mittal's image  
Answer added by  himanshu mittal
10 years ago

no no u can never force the jvm for garbage collection. System.gc() method only sends the request to jvm for the garbage collection. its all depend on jvm wheather it has ... See More

Mohammed Ersan's image  
Answer added by  Mohammed Ersan, Senior Android Developer, Mobile Travel Technologies
8 years ago

there is no replace all in J2ME since it uses old java1.2 (AFAIK), but here is a replacement method you can use     privateString replace(String str,String pattern,String ... See More

Nasim Khan's image  
Answer added by  Nasim Khan, Business Technology Analyst, Deloitte Consulting
8 years ago

The function of "replaceAll" is to substitute all occurrences of a particular string in another string. Following is the syntax of this method :   public String ... See More

Balaji Thiagarajan's image  
Answer added by  Balaji Thiagarajan, Solutions Architect, InfinitePL
10 years ago

1. byte b=5 (can hold upto127 without casting) int a=6 (all integer literals are by default int) a= a+b -> will always be int even if you dont cast it. but b=a+b -> ... See More