There are some features in C# that Java doesn't
have like structures that allow you to specify the
memory layout of data. And the "unsafe" keyword.
"Alexander Bryanson" <arcimpluse@yah oo.com> wrote in message
news:p_nab.6538 [email protected] lumbus.rr.com.. .[color=blue]
>
>
> T K wrote:
>[color=green]
> > Anyone aware of such a converter? Anyone know why SUN is not all over[/color][/color]
it?[color=blue][color=green]
> >
> > tia
> >
> > -t[/color]
>
> Why would we need such a converter? C# is trash. Who would ever want
> to turn it into Java? Garbage in, Garbage out.
>[/color]
So such a converter would be unable to translate these features, correct?
Phil... wrote:[color=blue]
> There are some features in C# that Java doesn't
> have like structures that allow you to specify the
> memory layout of data. And the "unsafe" keyword.
>
> "Alexander Bryanson" <arcimpluse@yah oo.com> wrote in message
> news:p_nab.6538 [email protected] lumbus.rr.com.. .
>[color=green]
>>
>>T K wrote:
>>
>>[color=darkred]
>>>Anyone aware of such a converter? Anyone know why SUN is not all over[/color][/color]
>
> it?
>[color=green][color=darkred]
>>>tia
>>>
>>>-t[/color]
>>
>>Why would we need such a converter? C# is trash. Who would ever want
>>to turn it into Java? Garbage in, Garbage out.
>>[/color]
>
>
>[/color]
well do you know how to turn off array bounds checking
i don't
"Alexander Bryanson" <arcimpluse@yah oo.com> wrote in message
news:Lntab.1517 0$uJ2.8128@fe3. columbus.rr.com ...[color=blue]
> So such a converter would be unable to translate these features, correct?
>
> Phil... wrote:[color=green]
> > There are some features in C# that Java doesn't
> > have like structures that allow you to specify the
> > memory layout of data. And the "unsafe" keyword.
> >
> > "Alexander Bryanson" <arcimpluse@yah oo.com> wrote in message
> > news:p_nab.6538 [email protected] lumbus.rr.com.. .
> >[color=darkred]
> >>
> >>T K wrote:
> >>
> >>
> >>>Anyone aware of such a converter? Anyone know why SUN is not all over[/color]
> >
> > it?
> >[color=darkred]
> >>>tia
> >>>
> >>>-t
> >>
> >>Why would we need such a converter? C# is trash. Who would ever want
> >>to turn it into Java? Garbage in, Garbage out.
> >>[/color]
> >
> >
> >[/color]
>[/color]
Sun has indicated
(<http://java.sun.com/products/hotspot/docs/whitepaper/Java_HSpot_WP_v 1.4_802_1.html> )
that their JIT compiler has the ability to infer when the bytecode
it's compiling to machine code cannot generate out-of-bounds array
indexes. When it makes that determination, it will omit the bounds
checks from the JIT-compiled machine code it emits.
Randall Schulz
Phil... wrote:
[color=blue]
> Well do you know how to turn off array bounds checking? I don't.[/color]
Comment