fefe23 • 20 hours ago

To borrow an old adage: The determined programmer can write C code in any language. :-)

1
MobiusHorizons • 19 hours ago

Atomics are hardly ā€œCā€. They are a primative exposed many CPU ISAs for helping to navigate the complexity those same CPUs introduced with OOO execution and complex caches in a multi-threaded environment. Much like simd atomics require extending the language through intrinsics or new types because they represent capabilities that were not possible when the language was invented. Atomics require this extra support in Java just as they do in rust or C.