|
|
libcats.org
UNIX Systems Programming: Communication, Concurrency and ThreadsKay A. Robbins, Steve RobbinsThis is an awesome book. You'll have to be patient when going through it. And you'll learn a lot if you follow along with the examples and make everything work. It took me probably 6 hours just to get through chapter 2 - not because I can't read, but because I'm paying attention to every little detail, and making sure I learn what's going on.
The other thing that came as a big surprise, was that this is the best introduction to C i've come across. I've read quite a few books on C. Generally, I get through these other books on C - I get the syntax and pointers, and headers, etc. What I can never get through in these other C books, is that they use Math for all the examples. Which bores me, and sometimes frustrates me - because what I want to do with systems programming is not math - that's just me. Of all the C books I've read, this one, and "C - A Reference Manual 5th Edition" are the best C books. One pitfall in the book, is that with most of the examples, the conditionals to check pointers, and some other conditionals are somewhat amateur looking (that's just me). For example, in chapter 2, the "listlib.c" file has tons of conditionals like this: list_t **newptrs; if(headptr == NULL) { errno = EINVAL; return -1; } That started to confuse me, why not just write: list_t **newptrs; if(!headptr) { errno = EINVAL; return -1; } Which is ok. So there are many times where it seems the author is either purposefully writing conditionals to be verbose for readers, or doesn't know how to simplify with "not" flips. Another example: if(ptr != NULL) can be simplified to: if(ptr) Other than those small things, this book is great.
Популярные книги за неделю:
Тестирование Дот Ком, или Пособие по жестокому обращению с багами в интернет-стартапахАвтор: Роман Савин
Размер книги: 5.26 Mb
Система упражнений по развитию способностей человека (Практическое пособие)Автор: Петров Аркадий НаумовичКатегория: Путь к себе
Размер книги: 818 Kb
Сотворение мира (3-х томник)Автор: Петров Аркадий НаумовичКатегория: Путь к себе
Размер книги: 817 Kb
Только что пользователи скачали эти книги:
Пространственно-временная теория РСАвтор: КоростелевКатегория: 1679581-Подборка книг по дисциплинам РТС
Размер книги: 15.64 Mb
Pomraning G. Equations of radiation hydrodynamics (Pergamon,1973)(600dpi)(T)(298s)_PCfm_.djvuАвтор:
Размер книги: 3.63 Mb
Tritium measurement techniques: Recommendations of the National Council on Radiation Protection and Measurements (NCRP report ; no. 47)Автор: National Council on Radiation Protection and Measurements
Размер книги: 4.27 Mb
Du sollst nicht merken. Variationen über das Paradies-ThemaАвтор: Alice Miller
Размер книги: 1019 Kb
Postal Worker: Florida: The Complete Preparation Guide (Learningexpress Civil Service Library)Автор: Learning Express Editors
Размер книги: 2.66 Mb
Телевизоры «Малахит» и «Космонавт»Автор: Алексаков Г.Н., Автор: Самойликов К.И.
Размер книги: 1.38 Mb
Performance Management Systems: A Global Perspective (Global HRM)Автор: Arup Varma, Автор: Pawan S. Budhwar, Автор: Angelo DeNisi
Размер книги: 2.28 Mb
Bunker babydoll, tome 2 : Le Serment d'HypocriteАвтор: Jean-David Morvan, Автор: Fabrice Jarzaguet
Размер книги: 27.57 Mb
|
|
|