Inline bytecode?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • PlasmaDragon

    Inline bytecode?

    Is it possible to do iline bytecode in Java? Sort of like inline asm
    in c++, but platform independent.
  • nos

    #2
    Re: Inline bytecode?


    "PlasmaDrag on" <PlasmaDragon@l ycos.co.uk> wrote in message
    news:15f1ff99.0 402221454.7899c 6fa@posting.goo gle.com...[color=blue]
    > Is it possible to do iline bytecode in Java? Sort of like inline asm
    > in c++, but platform independent.[/color]

    I think not.


    Comment

    • PlasmaDragon

      #3
      Re: Inline bytecode?

      "nos" <nos@nospam.com > wrote in message news:<I%b_b.393 92$Xp.177329@at tbi_s54>...[color=blue]
      > "PlasmaDrag on" <PlasmaDragon@l ycos.co.uk> wrote in message
      > news:15f1ff99.0 402221454.7899c 6fa@posting.goo gle.com...[color=green]
      > > Is it possible to do iline bytecode in Java? Sort of like inline asm
      > > in c++, but platform independent.[/color]
      >
      > I think not.[/color]

      Is there anyway at all to link bytecode and java into the same program then?

      Comment

      • nos

        #4
        Re: Inline bytecode?


        "PlasmaDrag on" <PlasmaDragon@l ycos.co.uk> wrote in message
        news:15f1ff99.0 402231626.49526 0b3@posting.goo gle.com...[color=blue]
        > "nos" <nos@nospam.com > wrote in message[/color]
        news:<I%b_b.393 92$Xp.177329@at tbi_s54>...[color=blue][color=green]
        > > "PlasmaDrag on" <PlasmaDragon@l ycos.co.uk> wrote in message
        > > news:15f1ff99.0 402221454.7899c 6fa@posting.goo gle.com...[color=darkred]
        > > > Is it possible to do iline bytecode in Java? Sort of like inline asm
        > > > in c++, but platform independent.[/color]
        > >
        > > I think not.[/color]
        >
        > Is there anyway at all to link bytecode and java into the same program[/color]
        then?
        Look into JNI (java native interface) you can write methods in c/c++ or
        whatever
        and invoke them from a java method.


        Comment

        • PlasmaDragon

          #5
          Re: Inline bytecode?

          Thanks for the help.

          Comment

          • S Manohar

            #6
            Re: Inline bytecode?



            or


            Comment

            Working...