C/C++使用技巧1001例一书的配套代码

源代码在线查看: showthis.cpp

软件大小: 71 K
上传用户: zjwbt
关键词: 1001 使用技巧 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include 
				
				class SomeClass {
				 public:
				   void show_with_this(void) {
				     cout 				     cout 				
				   void show_without_this(void) {
				     cout 				     cout 				   
				   SomeClass(char *title, char *author) {
				     strcpy(SomeClass::title, title);
				     strcpy(SomeClass::author, author);
				   };
				
				 private:
				   char title[256];
				   char author[256];
				};
				
				void main(void)
				 {
				   SomeClass book("Jamsa's 1001 C/C++ Tips", "Jamsa");
				
				   book.show_with_this();
				   book.show_without_this();
				 }
				
							

相关资源