Click here to Skip to main content
15,886,137 members
Home / Discussions / Java
   

Java

 
GeneralRe: passing java object to c through jni Pin
Richard MacCutchan27-Oct-16 1:51
mveRichard MacCutchan27-Oct-16 1:51 
QuestionIs it just me or is java (by design) the most disorganized language ever.. Pin
sislermi20-Oct-16 11:32
professionalsislermi20-Oct-16 11:32 
AnswerRe: Is it just me or is java (by design) the most disorganized language ever.. Pin
Richard MacCutchan20-Oct-16 20:49
mveRichard MacCutchan20-Oct-16 20:49 
QuestionJava Pin
Member 1179503614-Oct-16 4:32
Member 1179503614-Oct-16 4:32 
AnswerRe: Java Pin
Richard MacCutchan14-Oct-16 6:48
mveRichard MacCutchan14-Oct-16 6:48 
Questionjava Pin
Member 1189993512-Oct-16 0:54
Member 1189993512-Oct-16 0:54 
AnswerRe: java Pin
Richard MacCutchan13-Oct-16 21:10
mveRichard MacCutchan13-Oct-16 21:10 
QuestionHow to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 4:33
Member 1278579110-Oct-16 4:33 
class Sort1
{
public static void main(String...avg)
{
int a[][]={{10,50,40},{15,25,10},{25,14,19}};
for(int i=0;i<a.length;i++)
{
for(int j = 0;j<a[i].length;j++)
{
System.out.print(a[i][j]+"\t");
}
System.out.println();
}
int l =a.length;
int b[]=new int[l];
int c=0;
for(int k=0;k<a.length;k++)
{
for(int m=0;m<a[k].length;k++)
{
b[c]=a[k][m];
System.out.print(b[c] +"\t");
c++;
}
}
}
}
QuestionRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 4:55
mveRichard MacCutchan10-Oct-16 4:55 
AnswerRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 5:35
Member 1278579110-Oct-16 5:35 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 6:12
mveRichard MacCutchan10-Oct-16 6:12 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 6:29
Member 1278579110-Oct-16 6:29 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 6:38
mveRichard MacCutchan10-Oct-16 6:38 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 6:48
Member 1278579110-Oct-16 6:48 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 7:13
mveRichard MacCutchan10-Oct-16 7:13 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 7:18
Member 1278579110-Oct-16 7:18 
SuggestionRe: How to convert 2d array into 1d array in java Pin
Member 1279318014-Oct-16 0:24
Member 1279318014-Oct-16 0:24 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579115-Oct-16 5:06
Member 1278579115-Oct-16 5:06 
QuestionRelating Country to its State & Province Pin
Member 1276860029-Sep-16 23:12
Member 1276860029-Sep-16 23:12 
SuggestionRe: Relating Country to its State & Province Pin
Richard MacCutchan29-Sep-16 23:45
mveRichard MacCutchan29-Sep-16 23:45 
GeneralRe: Relating Country to its State & Province Pin
Member 1276860030-Sep-16 0:17
Member 1276860030-Sep-16 0:17 
GeneralRe: Relating Country to its State & Province Pin
Richard MacCutchan30-Sep-16 0:53
mveRichard MacCutchan30-Sep-16 0:53 
Questioncompile error: string is private with powershell Pin
shoysmTP15-Sep-16 0:53
shoysmTP15-Sep-16 0:53 
AnswerRe: compile error: string is private with powershell Pin
Richard MacCutchan15-Sep-16 1:40
mveRichard MacCutchan15-Sep-16 1:40 
QuestionLoad C++ Library Only Once Pin
Django_Untaken10-Sep-16 9:30
Django_Untaken10-Sep-16 9:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.