Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:"So who needs native code now?" (Score 1) 289

Indeed he didn't. The whole thread was about native vs. non-native code, where C is just an example of native code.

C++ is another example, closely related to C, with all the relevant properties. for example, you don't pay (performance) for abstractions/features you don't use. (exceptions, garbage collection, virtual function calls/inheritance)

Comment Re:The mess at the bottom (Score 1) 214

The best bet might be if China decides they need to be fully independant from the 'Capitalist West' and design their own architecture

I'm not so sure if you have ever seen the Chinese way of designing; fiddle with it until it seems to work. Search for Huawei's security problems and you'll get the drift. Hardware design is really not done better.

Comment Re:Huh? (Score 4, Informative) 371

Use RAII consistently, and use containers (from stl or otherwise) which have asserts() on bounds-checking. Bonus points for a tiny unit-test (which can therefore run at the end of every compilation). You'll be amazed at how stable, maintainable, easy to debug and performant your code will be.
Do the hardcore pointer handling only where the profiler tells you that it matters and there's no way java even gets close in performance

Comment Re:I thought latency was the main issue? (Score 1) 139

For the current generation/standards at most some power efficiency. More processing power might allow better coding schemes, better beamforming (=less interference), smaller circuits (since less has to be done in parallel). So in the end it'll mostly come down to power efficiency. http://slashdot.org/comments.pl?sid=4025309&cid=44410675#

Comment Re:I thought latency was the main issue? (Score 3, Informative) 139

since having your signal only travel 0.1 mm per clock pulse makes it rather hard to get the data around...

There's still plenty of fixed-function hardware around (wlan chipsets, even though they're somewhat programmable) for which this might not be a major issue.

Slashdot Top Deals

This restaurant was advertising breakfast any time. So I ordered french toast in the renaissance. - Steven Wright, comedian

Working...