標(biāo)題: Titlebook: Common Lisp Recipes; A Problem-Solution A Edmund Weitz Book 2016 Edmund Weitz 2016 common lisp.multi-threading.databases.GUI.web programmin [打印本頁(yè)] 作者: frustrate 時(shí)間: 2025-3-21 19:19
書目名稱Common Lisp Recipes影響因子(影響力)
書目名稱Common Lisp Recipes影響因子(影響力)學(xué)科排名
書目名稱Common Lisp Recipes網(wǎng)絡(luò)公開度
書目名稱Common Lisp Recipes網(wǎng)絡(luò)公開度學(xué)科排名
書目名稱Common Lisp Recipes被引頻次
書目名稱Common Lisp Recipes被引頻次學(xué)科排名
書目名稱Common Lisp Recipes年度引用
書目名稱Common Lisp Recipes年度引用學(xué)科排名
書目名稱Common Lisp Recipes讀者反饋
書目名稱Common Lisp Recipes讀者反饋學(xué)科排名
作者: 阻礙 時(shí)間: 2025-3-21 21:05
Book 2016tives and more information. Each recipe can be readindependently of the others and thus the book will earn a special place on yourbookshelf as a reference work you always want to have within reach...Common Lisp Recipes. is aimed atprogrammers who are already familiar with Common Lisp to a certain ex作者: Genetics 時(shí)間: 2025-3-22 02:12 作者: 招人嫉妒 時(shí)間: 2025-3-22 07:04 作者: slipped-disk 時(shí)間: 2025-3-22 11:33 作者: radiograph 時(shí)間: 2025-3-22 14:00
https://doi.org/10.1007/978-94-009-3571-6Many Lisps have offered some means of providing multiple execution strands for quite some time. However, most of them originally implemented it themselves in that the Lisp image managed several “Lisp processes” and had full control over them.作者: radiograph 時(shí)間: 2025-3-22 20:12
Philip Corrigan,Harvie Ramsay,Derek SayerErrors happen. There’s no magic bullet that’ll help you to avoid all errors your code could possibly ever encounter. But you can, of course, try to program defensively and anticipatory so that typical errors are noticed early and avoided before they can harm you. And you can be prepared to handle those errors that can’t be avoided.作者: cringe 時(shí)間: 2025-3-23 00:24
Philip Corrigan,Harvie Ramsay,Derek SayerI often meet people (and this even includes some of my computer science colleagues) who are surprised to hear that . is “object-oriented” at all. If you are reading this book, you most likely don’t belong in this group, but still, just knowing that something exists and having utilized it successfully are two very different pairs of shoes.作者: 易彎曲 時(shí)間: 2025-3-23 04:50 作者: Exploit 時(shí)間: 2025-3-23 06:18 作者: affect 時(shí)間: 2025-3-23 13:38
Chapter 3: Strings and Characters,Whereas “computing” was mostly about numbers in its earlier days, strings and characters are ubiquitous now—just think about XML and Internet protocols like HTTP. In Common Lisp, characters, as well as strings, are first-class data types.作者: Cubicle 時(shí)間: 2025-3-23 15:02
Chapter 4: Numbers and Math,Out of the box, . is exceptionally well suited to numerical mathematical calculations. Integers are not limited to a specific size (see Recipe .). It comes with rational numbers so you can do arithmetic with unlimited precision (see Recipe .). And it has complex numbers (see Recipe .).作者: cognizant 時(shí)間: 2025-3-23 21:22
Chapter 10: Evaluation, Compilation, Control Flow,To be honest, I couldn’t find a better title for this chapter. It’s kind of a hodgepodge of various subjects, although many of them would probably indeed fit into the chapter called . in the . standard.作者: SUE 時(shí)間: 2025-3-24 02:08
Chapter 11: Concurrency,Many Lisps have offered some means of providing multiple execution strands for quite some time. However, most of them originally implemented it themselves in that the Lisp image managed several “Lisp processes” and had full control over them.作者: Chromatic 時(shí)間: 2025-3-24 02:40
Chapter 12: Error Handling and Avoidance,Errors happen. There’s no magic bullet that’ll help you to avoid all errors your code could possibly ever encounter. But you can, of course, try to program defensively and anticipatory so that typical errors are noticed early and avoided before they can harm you. And you can be prepared to handle those errors that can’t be avoided.作者: Lucubrate 時(shí)間: 2025-3-24 06:42
Chapter 13: Objects, Classes, Types,I often meet people (and this even includes some of my computer science colleagues) who are surprised to hear that . is “object-oriented” at all. If you are reading this book, you most likely don’t belong in this group, but still, just knowing that something exists and having utilized it successfully are two very different pairs of shoes.作者: 滲透 時(shí)間: 2025-3-24 10:55
Chapter 16: Developing and Debugging,The Lisps that were dominant at the time when . was created, already had impressive interactive debugging facilities, and so the standard codified that every Lisp should have them.作者: 上下倒置 時(shí)間: 2025-3-24 16:51
Chapter 17: Optimization,When I was younger, I learned somewhere the Three Golden Rules of Optimization. They are as follows:作者: Crayon 時(shí)間: 2025-3-24 22:23
https://doi.org/10.1007/978-1-4842-1176-2common lisp; multi-threading; databases; GUI; web programming; debugging作者: 知道 時(shí)間: 2025-3-25 01:00
Inequality in Political Influence just one of many data types. But in Lisp, symbols play a central role because they are used to name things like variables and functions, are indispensable in macros, but are also objects in their own right. Thus, they deserve some attention.作者: Receive 時(shí)間: 2025-3-25 04:10
Property and Poverty: The Christian Message,s an abbreviation for “LISt Processing,” you shouldn’t be tempted to use lists exclusively. Lists are extremely flexible and lend themselves incredibly well for prototyping (see Chapter 2), but for many algorithms arrays are the better choice because of their constant-time access characteristics.作者: 接合 時(shí)間: 2025-3-25 07:28
From Russian Socialism to Soviet Communism,ures that map . to . by means of a .. Ideally, the cost of hash table lookups, as well as insertions or deletions of new entries, is independent of the number of elements stored in the table (although, see Recipe .), which makes them a powerful alternative to other ways of organizing data.作者: 鋼筆記下懲罰 時(shí)間: 2025-3-25 13:31
The Case of Self-Management in Yugoslaviae a lot of functions in the standard that work on sequences, which is to say that they accept lists as well as vectors as arguments. (And also strings, see ., because those are vectors, too.) We’ll discuss most of them in this chapter. (And see also Recipe 3-7.)作者: Systemic 時(shí)間: 2025-3-25 19:43 作者: Abduct 時(shí)間: 2025-3-25 20:53 作者: 暗語(yǔ) 時(shí)間: 2025-3-26 00:47
Socialist Economic Development and Reformsmplementation could encounter at the time the standard was conceived. While the result is, on the one hand, remarkably flexible, it might, on the other hand, seem pretty arcane and convoluted to someone who only ever had to deal with file systems on Windows or on Unix-like operating systems.作者: CT-angiography 時(shí)間: 2025-3-26 07:01 作者: 背景 時(shí)間: 2025-3-26 09:54 作者: 漂亮才會(huì)豪華 時(shí)間: 2025-3-26 14:43
Chapter 6: Hash Tables, Maps, and Sets,ures that map . to . by means of a .. Ideally, the cost of hash table lookups, as well as insertions or deletions of new entries, is independent of the number of elements stored in the table (although, see Recipe .), which makes them a powerful alternative to other ways of organizing data.作者: 表狀態(tài) 時(shí)間: 2025-3-26 19:56
Chapter 7: Sequences and Iteration,e a lot of functions in the standard that work on sequences, which is to say that they accept lists as well as vectors as arguments. (And also strings, see ., because those are vectors, too.) We’ll discuss most of them in this chapter. (And see also Recipe 3-7.)作者: Interdict 時(shí)間: 2025-3-26 22:27 作者: GUILT 時(shí)間: 2025-3-27 04:49 作者: 調(diào)整校對(duì) 時(shí)間: 2025-3-27 08:31 作者: isotope 時(shí)間: 2025-3-27 11:28
Inequality in Political Influence just one of many data types. But in Lisp, symbols play a central role because they are used to name things like variables and functions, are indispensable in macros, but are also objects in their own right. Thus, they deserve some attention.作者: 惡心 時(shí)間: 2025-3-27 17:26 作者: 護(hù)航艦 時(shí)間: 2025-3-27 19:57
Property and Poverty: The Christian Message,s an abbreviation for “LISt Processing,” you shouldn’t be tempted to use lists exclusively. Lists are extremely flexible and lend themselves incredibly well for prototyping (see Chapter 2), but for many algorithms arrays are the better choice because of their constant-time access characteristics.作者: 使苦惱 時(shí)間: 2025-3-27 22:38
From Russian Socialism to Soviet Communism,ures that map . to . by means of a .. Ideally, the cost of hash table lookups, as well as insertions or deletions of new entries, is independent of the number of elements stored in the table (although, see Recipe .), which makes them a powerful alternative to other ways of organizing data.作者: generic 時(shí)間: 2025-3-28 05:59
The Case of Self-Management in Yugoslaviae a lot of functions in the standard that work on sequences, which is to say that they accept lists as well as vectors as arguments. (And also strings, see ., because those are vectors, too.) We’ll discuss most of them in this chapter. (And see also Recipe 3-7.)作者: COLON 時(shí)間: 2025-3-28 10:13
https://doi.org/10.1007/978-94-009-3571-6m that consumes characters one by one and tries to make sense of them is called the .. Its behavior is clearly specified (as is pretty much everything in .), but it also is configurable (as is pretty much everything in .) so that you can bend it to your will.作者: 同時(shí)發(fā)生 時(shí)間: 2025-3-28 12:02 作者: Efflorescent 時(shí)間: 2025-3-28 16:43 作者: 寄生蟲 時(shí)間: 2025-3-28 19:16
Socialist Economic Development and Reformsmplementation could encounter at the time the standard was conceived. While the result is, on the one hand, remarkably flexible, it might, on the other hand, seem pretty arcane and convoluted to someone who only ever had to deal with file systems on Windows or on Unix-like operating systems.作者: 針葉樹 時(shí)間: 2025-3-29 01:39 作者: Paraplegia 時(shí)間: 2025-3-29 03:22 作者: POINT 時(shí)間: 2025-3-29 10:20
Edmund WeitzLearn how to interact with other programming languages, how to.write multithreaded code, and how to use conditions and restarts to guard your.programs against exceptional situations.Delve into advance作者: Conducive 時(shí)間: 2025-3-29 13:31 作者: Inscrutable 時(shí)間: 2025-3-29 18:30
Chapter 1: Symbols and Packages, just one of many data types. But in Lisp, symbols play a central role because they are used to name things like variables and functions, are indispensable in macros, but are also objects in their own right. Thus, they deserve some attention.作者: 忍受 時(shí)間: 2025-3-29 22:10
Chapter 2: Conses, Lists, and Trees,y because that’s how the internal representation of your code is realized and you’ll thus need them if you want to write macros and domain-specific languages. Also, because . has such a plethora of built-in convenience functions to manipulate conses and lists, and because conses are at the same time作者: 銀版照相 時(shí)間: 2025-3-30 01:40 作者: 帽子 時(shí)間: 2025-3-30 05:16
Chapter 6: Hash Tables, Maps, and Sets,ures that map . to . by means of a .. Ideally, the cost of hash table lookups, as well as insertions or deletions of new entries, is independent of the number of elements stored in the table (although, see Recipe .), which makes them a powerful alternative to other ways of organizing data.作者: 去才蔑視 時(shí)間: 2025-3-30 11:03 作者: 生銹 時(shí)間: 2025-3-30 15:01
Chapter 8: The Lisp Reader,m that consumes characters one by one and tries to make sense of them is called the .. Its behavior is clearly specified (as is pretty much everything in .), but it also is configurable (as is pretty much everything in .) so that you can bend it to your will.作者: 使習(xí)慣于 時(shí)間: 2025-3-30 17:55 作者: 挫敗 時(shí)間: 2025-3-30 20:45 作者: 尊敬 時(shí)間: 2025-3-31 04:30 作者: 短程旅游 時(shí)間: 2025-3-31 08:40 作者: Dendritic-Cells 時(shí)間: 2025-3-31 12:44 作者: 可行 時(shí)間: 2025-3-31 15:07 作者: 館長(zhǎng) 時(shí)間: 2025-3-31 17:46 作者: alliance 時(shí)間: 2025-4-1 00:13
Socialist Economic Development and Reforms remarkably flexible and they are ultimately also used by the Lisp reader (see .) and the Lisp printer (see .). This chapter is about the various ways you can use, adapt, and combine streams and it ends with a recipe that demonstrates how you can create your own stream classes for almost every task you can imagine.