Click here to Skip to main content
15,794,236 members
Home / Discussions / Java
   

Java

 
GeneralRe: passing java object to c through jni Pin
Richard MacCutchan27-Oct-16 2:51
mveRichard MacCutchan27-Oct-16 2:51 
QuestionIs it just me or is java (by design) the most disorganized language ever.. Pin
sislermi20-Oct-16 12:32
professionalsislermi20-Oct-16 12:32 
AnswerRe: Is it just me or is java (by design) the most disorganized language ever.. Pin
Richard MacCutchan20-Oct-16 21:49
mveRichard MacCutchan20-Oct-16 21:49 
QuestionJava Pin
Member 1179503614-Oct-16 5:32
Member 1179503614-Oct-16 5:32 
AnswerRe: Java Pin
Richard MacCutchan14-Oct-16 7:48
mveRichard MacCutchan14-Oct-16 7:48 
Questionjava Pin
Member 1189993512-Oct-16 1:54
Member 1189993512-Oct-16 1:54 
AnswerRe: java Pin
Richard MacCutchan13-Oct-16 22:10
mveRichard MacCutchan13-Oct-16 22:10 
QuestionHow to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 5:33
Member 1278579110-Oct-16 5: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 5:55
mveRichard MacCutchan10-Oct-16 5:55 
AnswerRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 6:35
Member 1278579110-Oct-16 6:35 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 7:12
mveRichard MacCutchan10-Oct-16 7:12 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 7:29
Member 1278579110-Oct-16 7:29 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 7:38
mveRichard MacCutchan10-Oct-16 7:38 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 7:48
Member 1278579110-Oct-16 7:48 
GeneralRe: How to convert 2d array into 1d array in java Pin
Richard MacCutchan10-Oct-16 8:13
mveRichard MacCutchan10-Oct-16 8:13 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579110-Oct-16 8:18
Member 1278579110-Oct-16 8:18 
SuggestionRe: How to convert 2d array into 1d array in java Pin
Member 1279318014-Oct-16 1:24
Member 1279318014-Oct-16 1:24 
GeneralRe: How to convert 2d array into 1d array in java Pin
Member 1278579115-Oct-16 6:06
Member 1278579115-Oct-16 6:06 
QuestionRelating Country to its State & Province Pin
Member 1276860030-Sep-16 0:12
Member 1276860030-Sep-16 0:12 
SuggestionRe: Relating Country to its State & Province Pin
Richard MacCutchan30-Sep-16 0:45
mveRichard MacCutchan30-Sep-16 0:45 
GeneralRe: Relating Country to its State & Province Pin
Member 1276860030-Sep-16 1:17
Member 1276860030-Sep-16 1:17 
GeneralRe: Relating Country to its State & Province Pin
Richard MacCutchan30-Sep-16 1:53
mveRichard MacCutchan30-Sep-16 1:53 
Questioncompile error: string is private with powershell Pin
shoysmTP15-Sep-16 1:53
shoysmTP15-Sep-16 1:53 
AnswerRe: compile error: string is private with powershell Pin
Richard MacCutchan15-Sep-16 2:40
mveRichard MacCutchan15-Sep-16 2:40 
QuestionLoad C++ Library Only Once Pin
Django_Untaken10-Sep-16 10:30
Django_Untaken10-Sep-16 10: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.