C to Java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • praveenholal
    New Member
    • Feb 2007
    • 19

    C to Java

    Hi i am converting code from c to java and i wanted to know how to rewrite the structures , pointer variables , pointers to pointers , unions embedded within structures, self referential structures, extern variables/functions and header files into java .

    Anyone who had done the conversion please guide me.



    Thanks in Advance
    Praveen
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by praveenholal
    Hi i am converting code from c to java and i wanted to know how to rewrite the structures , pointer variables , pointers to pointers , unions embedded within structures, self referential structures, extern variables/functions and header files into java .

    Anyone who had done the conversion please guide me.



    Thanks in Advance
    Praveen
    There is no such thing as *the* conversion; C's pointer arithmetic is a showstopper
    here and it'll take an (almost?) complete rewrite of the code to implement it in Java.
    If you insist doing such an ugly job google for "C to Java".

    kind regards,

    Jos

    Comment

    Working...