char_main_push.cpp
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include "MS_Queue.h"
  2. // workaround MS compiler bug: doesn't properly handle member specializations
  3. /*
  4.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  5.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  6.  * copyright and warranty notices given in that book:
  7.  * 
  8.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  9.  * 
  10.  * 
  11.  * "The authors and publisher have taken care in the preparation of this book,
  12.  * but make no expressed or implied warranty of any kind and assume no
  13.  * responsibility for errors or omissions. No liability is assumed for
  14.  * incidental or consequential damages in connection with or arising out of the
  15.  * use of the information or programs contained herein."
  16.  * 
  17.  * Permission is granted for this code to be used for educational purposes in
  18.  * association with the book, given proper citation if and when posted or
  19.  * reproduced.Any commercial use of this code requires the explicit written
  20.  * permission of the publisher, Addison-Wesley Professional, a division of
  21.  * Pearson Education, Inc. Send your request for permission, stating clearly
  22.  * what code you would like to use, and in what specific way, to the following
  23.  * address: 
  24.  * 
  25.  *  Pearson Education, Inc.
  26.  *  Rights and Contracts Department
  27.  *  75 Arlington Street, Suite 300
  28.  *  Boston, MA 02216
  29.  *  Fax: (617) 848-7047
  30. */ 
  31. // push and pop specialized for const char*
  32. #include"queue_push_char.cpp"
  33. #include <string>
  34. using std::string;
  35. #include <iostream>
  36. using std::cout; using std::endl;
  37. int main()
  38. {
  39. char* hi = "hello";
  40. Queue<const char*> q1;
  41. q1.push(hi);
  42. q1.push("world");
  43. q1.push("bye");
  44. cout << q1 << endl;
  45. for (int i = 0; i != 3; ++i) {
  46. cout << q1.front() << endl;
  47. q1.pop();
  48. }
  49. cout << "q1 is empty? " << ((q1.empty()) ? "yes" : "no") << endl;
  50. string hi2 = "hello";
  51. Queue<string> q2;
  52. q2.push(hi2);
  53. q2.push("world");
  54. q2.push("bye");
  55. cout << q2 << endl;
  56. for (int i = 0; i != 3; ++i) {
  57. cout << q2.front() << endl;
  58. q2.pop();
  59. }
  60. cout << "q2 is empty? " << ((q2.empty()) ? "yes" : "no") << endl;
  61. return 0;
  62. }