Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай
Bits&Bytes,
а также все другие курсы, прямо сейчас!
Премиум
-
Урок 1. 00:04:33Welcome: Course Origin, Expected Outcomes, Who it is for, Code Samples
-
Урок 2. 00:02:55What are bits, bytes and nibbles?
-
Урок 3. 00:06:11How many bytes does each primitive type use in Java?
-
Урок 4. 00:09:56Converting between base 10 (decimal) and base 5
-
Урок 5. 00:03:00Converting between decimal and binary
-
Урок 6. 00:05:22Converting between binary and octal
-
Урок 7. 00:05:36Converting between binary and hexadecimal
-
Урок 8. 00:11:29Bitwise operators OR (|) and AND (&)
-
Урок 9. 00:06:07Bitwise operator XOR (^) and COMPLEMENT (~)
-
Урок 10. 00:06:59Shift left <<
-
Урок 11. 00:11:16Shift right, signed >> and unsigned >>>
-
Урок 12. 00:18:26Writing a BitPrinter
-
Урок 13. 00:08:25Exploring bits in integer values and why ~0 == -1
-
Урок 14. 00:14:04Masking individual bits inside a number
-
Урок 15. 00:09:03Why Math.abs(num) might be negative
-
Урок 16. 00:17:15Exploring how floating point numbers work
-
Урок 17. 00:15:17Evolution of hash() in Java HashMap
-
Урок 18. 00:11:33Minimizing bucket collisions in HashMap
-
Урок 19. 00:14:47java.util.BitSet (example usage ArrayList.removeIf in Java 8)
-
Урок 20. 00:10:44EnumSet vs bit masking (example usage Spliterator)
-
Урок 21. 00:05:07Finding midpoint of two ints without overflowing (from Spliterators)
-
Урок 22. 00:07:28Modifiers in Reflection
-
Урок 23. 00:02:20Conclusion