Selasa, 24 Juni 2014

[Z813.Ebook] Download Ebook Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea

Download Ebook Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea

Checking out guide Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea by online can be additionally done quickly every where you are. It appears that hesitating the bus on the shelter, waiting the list for line, or various other areas feasible. This Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea can accompany you because time. It will certainly not make you really feel bored. Besides, this means will additionally improve your life quality.

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea



Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea

Download Ebook Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea

Outstanding Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea book is consistently being the best friend for spending little time in your office, evening time, bus, as well as almost everywhere. It will certainly be a great way to merely look, open, and also review the book Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea while because time. As recognized, encounter as well as ability do not always featured the much cash to acquire them. Reading this publication with the title Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea will certainly let you recognize much more things.

When some people taking a look at you while reviewing Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea, you could feel so proud. However, rather than other individuals feels you have to instil in yourself that you are reading Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea not due to that factors. Reading this Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea will give you more than people appreciate. It will overview of know more than individuals looking at you. Already, there are several sources to understanding, checking out a publication Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea still becomes the first choice as a great means.

Why must be reading Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea Once again, it will depend on how you feel and think about it. It is certainly that one of the perk to take when reading this Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea; you can take more lessons straight. Even you have actually not undergone it in your life; you can gain the encounter by reviewing Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea And now, we will certainly present you with the on the internet publication Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea in this website.

What type of publication Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea you will favor to? Now, you will not take the published book. It is your time to obtain soft file book Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea instead the printed papers. You could enjoy this soft file Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea in at any time you anticipate. Even it is in anticipated location as the other do, you can review the book Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea in your gadget. Or if you really want a lot more, you can continue reading your computer or laptop computer to get full screen leading. Juts find it right here by downloading and install the soft data Concurrent Programming In Java™: Design Principles And Pattern, 2nd Edition, By Doug Lea in link page.

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea

In this second edition, you will find thoroughly updated coverage of the Javao 2 platform and new or expanded coverage of: * Memory model * Cancellation * Portable parallel programming * Utility classes for concurrency control The Java platform provides a broad and powerful set of APIs, tools, and technologies. One of its most powerful capabilities is the built-in support for threads. This makes concurrent programming an attractive yet challenging option for programmers using the Java programming language. This book shows readers how to use the Java platforms threading model more precisely by helping them to understand the patterns and tradeoffs associated with concurrent programming. You will learn how to initiate, control, and coordinate concurrent activities using the class java.lang.Thread, the keywords synchronized and volatile, and the methods wait, notify, and notifyAll. In addition, you will find detailed coverage of all aspects of concurrent programming, including such topics as confinement and synchronization, deadlocks and conflicts, state-dependent action control, asynchronous message passing and control flow, coordinated interaction, and structuring web-based and compu

  • Sales Rank: #347539 in Books
  • Published on: 1999-11-04
  • Released on: 1999-10-25
  • Original language: English
  • Number of items: 1
  • Dimensions: 9.00" h x 1.20" w x 7.30" l, 1.46 pounds
  • Binding: Paperback
  • 432 pages

Amazon.com Review
Concurrent Programming in Java, 2nd Edition surveys a wide field of research in parallelism and concurrency and shows how to do more with multithreading in Java with dozens of patterns and design tips. Written for the advanced Java developer, this book offers a comprehensive tour of leading-edge thinking about parallel coding processes.

Within the dozens of techniques and tips offered here, this book accomplishes at least two goals. First, it shows how concurrency is implemented by default within Java, with material on how built-in features (like the synchronized keyword and its memory model) can be expected to perform when dealing with multiple threads. Naturally, Java threads themselves are also covered, including priorities, scheduling, and the like.

Much of this book looks at ways to improve performance of concurrent code beyond the simple default strategies. After defining criteria for measuring concurrent code (such as safety and "liveness," a measure of running live threads effectively), the book presents dozens of techniques for letting threads work together safely. For the working Java programmer, coverage of patterns that have been implemented in the downloadable java.concurrency package will be the most immediately useful. (Within this nearly encyclopedic survey, short code snippets are used for every pattern and concept.)

Though theoretical at times, this book offers plenty of ideas and sample code to get you started thinking of ways to improve multithreaded code.

Impressively comprehensive, Concurrent Programming in Java offers a veritable bible of techniques for doing two things at once with threads in Java. It's a worthwhile guide to the state-of-the-art strategies for improving the performance of your Java threads. --Richard Dragan

Topics covered: Threads and concurrency in Java, design considerations (safety, liveness, and performance), Before/After Patterns, layering, adapters, immutability and synchronization, deadlock, resource ordering, the Java Memory Model and concurrency, using the java.concurrency package, confinement, refactoring for concurrency, mutexes, read-write locks, recovering from failure, notifications, semaphores, latches, exchanges, transactions, one-way messages, worker threads, polling and event-driven I/O, parallelism techniques (fork/join, computation trees, and barriers), Communicating Sequential Processes (CSP).

From the Back Cover

In this second edition, you will find thoroughly updated coverage of the Javao 2 platform and new or expanded coverage of:

  • Memory model
  • Cancellation
  • Portable parallel programming
  • Utility classes for concurrency control

The Java platform provides a broad and powerful set of APIs, tools, and technologies. One of its most powerful capabilities is the built-in support for threads. This makes concurrent programming an attractive yet challenging option for programmers using the Java programming language.

This book shows readers how to use the Java platform's threading model more precisely by helping them to understand the patterns and tradeoffs associated with concurrent programming.

You will learn how to initiate, control, and coordinate concurrent activities using the class java.lang.Thread, the keywords synchronized and volatile, and the methods wait, notify, and notifyAll. In addition, you will find detailed coverage of all aspects of concurrent programming, including such topics as confinement and synchronization, deadlocks and conflicts, state-dependent action control, asynchronous message passing and control flow, coordinated interaction, and structuring web-based and computational services.

The book targets intermediate to advanced programmers interested in mastering the complexities of concurrent programming. Taking a design pattern approach, the book offers standard design techniques for creating and implementing components that solve common concurrent programming challenges. The numerous code examples throughout help clarify the subtleties of the concurrent programming concepts discussed.



0201310090B04062001

About the Author

Doug Lea is one of the foremost experts on object-oriented technology and software reuse. He has been doing collaborative research with Sun Labs for more than five years. Lea is Professor of Computer Science at SUNY Oswego, Co-director of the Software Engineering Lab at the New York Center for Advanced Technology in Computer Applications, and Adjunct Professor of Electrical and Computer Engineering at Syracuse University. In addition, he co-authored the book, Object-Oriented System Development (Addison-Wesley, 1993). He received his B.A., M.A., and Ph.D. from the University of New Hampshire.



Most helpful customer reviews

28 of 29 people found the following review helpful.
Everything you need to know about concurrency in Java
By Bob Carpenter
Concurrent programming is fraught with peril. It's much more complex than sequential programming in every meaningful way from specification to unit testing. But if you want to do it right, meaning balancing liveness with safety for efficient and robust multi-threaded applications, you need Doug Lea's "Concurrent Programming in Java". Especially if you need to design an extensible framework with concurrency; well-known examples of such frameworks incluce Swing, most of java.net, and just about every aspect of J2EE.
Lea provides an intense introduction at the level of an advanced undergraduate course. It's fairly academic in tone, because he takes the time to provide thorough definitions and detailed examples. As a former academic who now designs and programs for a living, this is just what I was looking for. But don't buy this book expecting a cookbook of code to cut and paste. It's much more about providing you the fundamental tools to design your own concurrent classes, applications and frameworks.
Lea presupposes the user is fluent in Java, knows a bit about concurrent programming patterns involving mutexes, semaphores, etc, and is familiar with the basic object-oriented design patterns. If you're not up to speed in these areas, the path I followed was reading the following:
* Lewis's "Threads Primer" (warning: it's C/unix-based),
* Gosling and Joy's "Java Programming Language",
* Bloch's "Effective Java", and
* Gamma et al.'s "Design Patterns".
Even if you don't buy this book, consider using Lea's concurrent.util package available from his web site. It provides solid implementations of everything from simple mutexes to concurrent read-single write wrappers for Java collections (Sun's own wrappers simply synchronize all methods, which suffers reduced liveness compared to CRSW designs). And it's both elegantly designed and thoroughly javadoc-ed.
The first edition was great, and I've just finished reading the second edition cover to cover and it has taken my understanding of concurrent design to a new level. Just be warned that this book's not for novices or hobbyists; it's for programmers who need to design the guts of concurrent systems the "right" way and then implement them in Java, especially for extensible frameworks.

0 of 0 people found the following review helpful.
Well worthwhile
By A Customer
Really informative. Seems to offer a "2 in 1" deal where it provides information on both concurrency and patterns. Not a light read as was the case before but the information is worth the effort.

8 of 9 people found the following review helpful.
Read It Slowly
By A Customer
I bought CPJ because I had a concurrency problem at hand (writing a an efficient cancelable timer class) and had hoped to find a quick solution here. But what! Doug Lea is not in a hurry and takes his time to introduce and explain all the nitty-gritty of Java concurrency. I thought it wasn't necessary to learn about all this, but now I agree that you need to see the greater picture before you go off and implement even small solutions. Reading this book leaves me wiser than ever before and confident I could attack almost any concurrency problem in Java! (And it took me two weeks to solve my problem, when I reached page 200 or so, and it was piece of cake then.)

See all 37 customer reviews...

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea PDF
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea EPub
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea Doc
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea iBooks
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea rtf
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea Mobipocket
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea Kindle

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea PDF

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea PDF

Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea PDF
Concurrent Programming in Java™: Design Principles and Pattern, 2nd Edition, by Doug Lea PDF

Kamis, 12 Juni 2014

[C698.Ebook] PDF Ebook Trail of Secrets, by Laura Wolfe

PDF Ebook Trail of Secrets, by Laura Wolfe

Reviewing, when even more, will give you something brand-new. Something that you have no idea after that exposed to be well known with guide Trail Of Secrets, By Laura Wolfe message. Some understanding or session that re received from reading e-books is vast. More e-books Trail Of Secrets, By Laura Wolfe you review, even more knowledge you obtain, and a lot more possibilities to always love reviewing publications. Due to this reason, reviewing publication must be started from earlier. It is as what you can acquire from guide Trail Of Secrets, By Laura Wolfe

Trail of Secrets, by Laura Wolfe

Trail of Secrets, by Laura Wolfe



Trail of Secrets, by Laura Wolfe

PDF Ebook Trail of Secrets, by Laura Wolfe

Trail Of Secrets, By Laura Wolfe. Let's check out! We will typically learn this sentence all over. When still being a kid, mama utilized to buy us to always check out, so did the educator. Some books Trail Of Secrets, By Laura Wolfe are totally reviewed in a week and we require the obligation to assist reading Trail Of Secrets, By Laura Wolfe Exactly what around now? Do you still love reading? Is reading just for you that have obligation? Never! We right here supply you a brand-new publication entitled Trail Of Secrets, By Laura Wolfe to review.

Presents currently this Trail Of Secrets, By Laura Wolfe as one of your book collection! However, it is not in your cabinet compilations. Why? This is the book Trail Of Secrets, By Laura Wolfe that is provided in soft data. You could download and install the soft file of this spectacular book Trail Of Secrets, By Laura Wolfe now and in the web link provided. Yeah, various with the other individuals which seek book Trail Of Secrets, By Laura Wolfe outside, you can get easier to pose this book. When some people still stroll right into the store as well as browse the book Trail Of Secrets, By Laura Wolfe, you are here only remain on your seat as well as get guide Trail Of Secrets, By Laura Wolfe.

While the other individuals in the store, they are not sure to locate this Trail Of Secrets, By Laura Wolfe directly. It may require even more times to go shop by shop. This is why we intend you this site. We will supply the best method and also recommendation to get the book Trail Of Secrets, By Laura Wolfe Even this is soft documents book, it will be ease to carry Trail Of Secrets, By Laura Wolfe wherever or conserve in the house. The distinction is that you may not require relocate guide Trail Of Secrets, By Laura Wolfe place to area. You might need just copy to the other devices.

Currently, reading this amazing Trail Of Secrets, By Laura Wolfe will be simpler unless you get download the soft data here. Simply below! By clicking the connect to download and install Trail Of Secrets, By Laura Wolfe, you could start to obtain the book for your own. Be the very first proprietor of this soft data book Trail Of Secrets, By Laura Wolfe Make difference for the others and obtain the first to step forward for Trail Of Secrets, By Laura Wolfe Here and now!

Trail of Secrets, by Laura Wolfe

2016 Next Generation Indie Book Awards Finalist - First Novel

Spending three weeks of her summer at the elite Foxwoode Riding Academy in northern Michigan should have been one of the happiest times of sixteen year-old Brynlei's life. But from the moment Brynlei arrives at Foxwoode, she can't shake the feeling she's being watched.
Then she hears the story of a girl who vanished on a trail ride four years earlier. While the other girls laugh over the story of the dead girl who haunts Foxwoode, Brynlei senses that the girl--or her ghost--may be lurking in the shadows.

Brynlei's quest to reveal the truth interferes with her plan to win Foxwoode's coveted "Top Rider" award. To make things worse, someone discovers Brynlei's search for answers and will go to any length to stop her. As Brynlei begins to unravel the facts surrounding the missing girl's disappearance, she is faced with an impossible choice. Will she protect a valuable secret? Or save a life? TRAIL OF SECRETS (Book 1, Dark Horse Series)�����������

  • Sales Rank: #545538 in Books
  • Published on: 2016-07-08
  • Released on: 2016-07-08
  • Original language: English
  • Number of items: 1
  • Dimensions: 9.00" h x .46" w x 6.00" l, .60 pounds
  • Binding: Paperback
  • 182 pages

Review
"[T]his book was not only "good enough" to add, but exceeded all expectations! This was a real page turner that caught my attention and kept it from the very first page. It was a great story, well-written, and kept me guessing until the end." -Milford Public Library, Teen Librarian
"The ending was not at all what I was expecting and it was great...I look forward to seeing more from this author." -TMB Book Reviews

Most helpful customer reviews

2 of 2 people found the following review helpful.
Much More than a Horse Story
By D. G. Driver
I'm not much of a horse story girl. Aside from some chapter books I read with my daughter when she was in 3rd grade about little girls with ponies, I haven't read a horse book since Black Beauty when I was in 3rd grade myself. Still, the cover of this book is alluring, and I'd heard a lot about it, so I gave it a shot. So glad I did. It is a great summer camp story. It's got all the things you would expect of an all girls' equestrian camp, snotty rich girls, that cool odd ball, and of course the new girl who is so darned curious. On top of all of that there is this mystery about a girl who went missing 5 years ago and is presumed dead, except Brynlei keeps seeing someone in the woods that looks like her. Is it really the girl? Is it a ghost? She is determined to find out. I was going to give this book 4 stars for just being a good, solid YA mystery, but then I got to the final 3rd of the book where the mystery finally unravels. From that point on the drama and tension had me on pins and needles to the very end. I wanted to know how it was all going to turn out and if everyone that I came to love so much in this book were going to be okay. So... 5 stars for hooking me in. A nice clean read, perfect for ages 12 and up. Highly recommend! And double recommend if you love horses.

0 of 0 people found the following review helpful.
A fun twist you will never see coming!
By Madelynn
This book was a fun, easy read. Great for teens or adults. As a non-rider, I didn't understand a lot of the horse terminology that was heavily included throughout the book, but it was interesting and even a little educational. The ending well…. wow. Didn't see it coming and it kept twisting even after I thought I had it all figured out! I love a good mystery that I don't quickly guess the ending of. I will definitely recommend.

1 of 1 people found the following review helpful.
It’s even better when I learn something new or venture away from ...
By ElBieb
When I pick up a book to read, I want to be engrossed in the story and carried away. I hope the storyline will take me someplace else, grab my attention, and keep it. It’s even better when I learn something new or venture away from my normal routine in reading. Trail of Secrets was all of this for me. I don’t usually read mysteries, but this book was very enjoyable and it took me to another place. I almost felt like I was at the riding camp and knew these characters. I found myself thinking about them during the days when I was not even reading the book! The author painted such a detailed picture of the characters’ personalities that you could really relate to the interactions between them. As others have mentioned, I knew nothing about riding and haven’t been around horses much…but I found the equestrian language and tactics intriguing. It was not over-emphasized, just introduced enough to seem very credible and add to the authenticity. It gave a glimpse into the sport/hobby of these girls and the knowledge they need to ride at that level. Anyways, the mystery aspect of the book was fun and a little wild – there are unexpected twists. This is a great novel for teens or adults, and a good book to use even to introduce a young adult to mystery. I recommend it and I would look forward to reading another novel by this author if a sequel follows! Really, four and a half stars.

See all 19 customer reviews...

Trail of Secrets, by Laura Wolfe PDF
Trail of Secrets, by Laura Wolfe EPub
Trail of Secrets, by Laura Wolfe Doc
Trail of Secrets, by Laura Wolfe iBooks
Trail of Secrets, by Laura Wolfe rtf
Trail of Secrets, by Laura Wolfe Mobipocket
Trail of Secrets, by Laura Wolfe Kindle

Trail of Secrets, by Laura Wolfe PDF

Trail of Secrets, by Laura Wolfe PDF

Trail of Secrets, by Laura Wolfe PDF
Trail of Secrets, by Laura Wolfe PDF

Kamis, 05 Juni 2014

[G141.Ebook] Ebook Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr

Ebook Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr

This is several of the benefits to take when being the participant and also obtain the book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr here. Still ask what's different of the other website? We give the hundreds titles that are developed by suggested authors and also authors, around the globe. The connect to get and download and install Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr is additionally really easy. You might not discover the challenging website that order to do more. So, the means for you to obtain this Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr will be so simple, will not you?

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr



Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr

Ebook Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr

Suggestion in selecting the very best book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr to read this day can be obtained by reading this web page. You could discover the very best book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr that is sold in this globe. Not only had actually the books released from this country, however also the various other nations. As well as currently, we expect you to check out Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr as one of the reading materials. This is just one of the most effective publications to accumulate in this website. Look at the resource and browse the books Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr You can discover lots of titles of the books offered.

Below, we have various book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr and also collections to read. We likewise serve variant kinds as well as type of the publications to search. The fun e-book, fiction, history, novel, science, as well as other types of publications are available below. As this Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr, it turneds into one of the recommended book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr collections that we have. This is why you are in the best site to view the incredible e-books to possess.

It will not take more time to obtain this Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr It will not take more money to print this book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Nowadays, people have been so smart to use the modern technology. Why do not you use your gizmo or other device to save this downloaded soft file publication Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Through this will let you to consistently be come with by this e-book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Obviously, it will be the very best close friend if you read this publication Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr up until completed.

Be the initial to get this book now as well as get all factors why you should review this Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Guide Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr is not only for your duties or requirement in your life. Publications will consistently be a buddy in each time you review. Now, let the others find out about this web page. You can take the perks as well as discuss it likewise for your buddies and also individuals around you. By in this manner, you could truly obtain the significance of this e-book Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr beneficially. Just what do you believe regarding our suggestion right here?

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr

Encyclopedic coverage of drugs worldwide. Monographs on 4500 substances in 54 chapters. Preparations on 62,500 medicines from 17 countries. Edited in-house - unbiased and independantly evaluated information.

  • Sales Rank: #2286177 in Books
  • Brand: Brand: Pharmaceutical Pr
  • Published on: 2002-05-02
  • Ingredients: Example Ingredients
  • Original language: English
  • Number of items: 1
  • Dimensions: 11.00" h x 8.75" w x 2.75" l,
  • Binding: Hardcover
  • 2483 pages
Features
  • Used Book in Good Condition

Most helpful customer reviews

7 of 7 people found the following review helpful.
A good place to find descriptions of genuinely obscure drugs
By A Customer
This book contains references to some drugs that I couldn't find anywhere else. Drugs that are no longer in common use, that are used exclusively outside the US, or that have toxicity levels that are normally unacceptable may still find a listing in Martindale. The index is very thorough. I had only two complaints: 1) I don't understand why some drugs information is dropped when new editions come out -- I would rather see the book simply grow, rather than sometimes requiring access to older editions, and 2) it doesn't present molecular structures (sigh). Still, the opportunity to find information that is otherwise simply unavailable (try to find dosing schedules for potassium bromide elsewhere, to pick an example) outweighs any complaints.

5 of 8 people found the following review helpful.
A must have for anyone in the nedical community.
By A Customer
Great reference for any pharmaceutical drug. Complete and accurate information that can help in a variety of problems.

See all 2 customer reviews...

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr PDF
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr EPub
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Doc
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr iBooks
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr rtf
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Mobipocket
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr Kindle

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr PDF

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr PDF

Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr PDF
Martindale: The Complete Drug ReferenceFrom Brand: Pharmaceutical Pr PDF