Hi im really new to understanding the conversion of C to java especially with objects and since java doesnt have objects but classes im trying to figure out.
basically i have a char[1000] in java.
so its just raw data btu i want to convert it into a class i have.
os is there a way to get the char[1000] into it i keep thnking something liek this should be possibleCode:class data{
char [] name = new char[50];
}
class arrayofdata{
data [] d = new data(20)
}
foo [1000];
arrayofdata gg = new arrayofdata(foo);
