Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re: Why Java? (Score 1) 179

As a C/C++ veteran of > 20 years, one angle is Android.

That Java mantra got carried into Google at the time and it's locked in now.

Benefits, portably recompiling (not Java) byte code on demand for 32-bit or 64-bit architectures with improved simd optimizations.

Backwards compatibility is kept at the in the runtime-compiler, API level instead of depending on the CPU for legacy compatibility (see Intel).

This predates .NET and only slightly suffers from progressing through the language tweaks from Java 6 through Java 8. It's much more mature than .NET so the changes aren't as drastic.

Library of third-party libraries is vast.

Comment Re:Utter bullshit (Score 1) 192

You're talking about connecting the dots and plumbing. That's IT.

Good coding is also a hard science. You only know where your goal is (and maybe not). Finding the dots to connect is then 90% sweating it out empirically.

The real world is full of different hardware, interfaces, paradigms. At certain points you can't gloss over it with generalized code, but have to engineer something more focused.

Sometimes, it's also time-intensive testing and hacking to glean out undocumented bits.

Of course this is all against a set schedule. You can't get there punching in and out 4 - 5 hours a day.

Slashdot Top Deals

Hackers are just a migratory lifeform with a tropism for computers.

Working...