<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_编程浪子</title><subtitle type="text">钱鑫的个人博客</subtitle><id>http://feed.cnblogs.com/blog/u/44198/rss</id><updated>2009-11-21T14:32:44Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/44198/rss"/><entry><id>http://www.cnblogs.com/bigshow/archive/2009/11/21/1607635.html</id><title type="text">[原创]绝对能够测试你的C语言功力的几个问题 - 参考答案</title><summary type="text">绝对能够测试你的C语言功力的几个问题 - 参考答案</summary><published>2009-11-21T08:03:00Z</published><updated>2009-11-21T08:03:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2009/11/21/1607635.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2009/11/21/1607635.html"/><content type="text">绝对能够测试你的C语言功力的几个问题 - 参考答案</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2009/11/15/1603422.html</id><title type="text">[随笔]2010思科笔试经历</title><summary type="text">2010思科笔试经历，写下来积攒rp</summary><published>2009-11-15T10:50:00Z</published><updated>2009-11-15T10:50:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2009/11/15/1603422.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2009/11/15/1603422.html"/><content type="text">2010思科笔试经历，写下来积攒rp</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2009/11/11/1601110.html</id><title type="text">[原创]多维数组下标运算符重载</title><summary type="text">遇到一道笔试题：设计一个矩阵类，行和列数通过构造函数输入，支持a[][]取值和赋值。</summary><published>2009-11-11T08:19:00Z</published><updated>2009-11-11T08:19:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2009/11/11/1601110.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2009/11/11/1601110.html"/><content type="text">遇到一道笔试题：设计一个矩阵类，行和列数通过构造函数输入，支持a[][]取值和赋值。</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2009/10/27/1590809.html</id><title type="text">[原创]C++判断操作系统是16位还是32位</title><summary type="text">找工作过程中遇到的一道笔试题，两种解法：1.操作系统是16位还是32位是跟它的地址寻址方式相关的（需要CPU支持，但与CPU字长没有必然联系），因此可以直接通过指针（地址）的长度来判断：cout &lt;&lt; (sizeof(int *)==4 ? "32 bit" : "16 bit") &lt;&lt; endl;2.如果不允许用sizeof，则通过整数的表示范围来判断，16位系统中整数最...</summary><published>2009-10-27T09:29:00Z</published><updated>2009-10-27T09:29:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2009/10/27/1590809.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2009/10/27/1590809.html"/><content type="text">找工作过程中遇到的一道笔试题，两种解法：1.操作系统是16位还是32位是跟它的地址寻址方式相关的（需要CPU支持，但与CPU字长没有必然联系），因此可以直接通过指针（地址）的长度来判断：cout &lt;&lt; (sizeof(int *)==4 ? "32 bit" : "16 bit") &lt;&lt; endl;2.如果不允许用sizeof，则通过整数的表示范围来判断，16位系统中整数最...</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2009/01/11/1373835.html</id><title type="text">[原创]外键约束方式</title><summary type="text">如果表A的主关键字是表B中的字段，则该字段称为表B的外键，表A称为主表，表B称为从表。外键是用来实现参照完整性的，不同的外键约束方式将可以使两张表紧密的结合起来，特别是修改或者删除的级联操作将使得日常的维护工作更加轻松。这里以MySQL为例，总结一下3种外键约束方式的区别和联系。</summary><published>2009-01-11T14:27:00Z</published><updated>2009-01-11T14:27:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2009/01/11/1373835.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2009/01/11/1373835.html"/><content type="text">如果表A的主关键字是表B中的字段，则该字段称为表B的外键，表A称为主表，表B称为从表。外键是用来实现参照完整性的，不同的外键约束方式将可以使两张表紧密的结合起来，特别是修改或者删除的级联操作将使得日常的维护工作更加轻松。这里以MySQL为例，总结一下3种外键约束方式的区别和联系。</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2009/01/03/1367661.html</id><title type="text">[原创]二维数组的动态分配及参数传递</title><summary type="text">总结C/C++中动态分配二维数组的各种方法，以及将静态二维数组作为函数参数传递的方法~</summary><published>2009-01-03T14:18:00Z</published><updated>2009-01-03T14:18:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2009/01/03/1367661.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2009/01/03/1367661.html"/><content type="text">总结C/C++中动态分配二维数组的各种方法，以及将静态二维数组作为函数参数传递的方法~</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2008/11/10/1330514.html</id><title type="text">[原创]引用参数与引用返回值</title><summary type="text">经常看到这样的声明：T&amp; func(T&amp; t); 这种声明和T func(T t)有什么区别？书上的解释是为了提高效率，究竟是如何提高效率的呢？内部执行了什么操作？本文通过8个小例子对引用参数和引用返回进行了一次彻底的排查。</summary><published>2008-11-10T06:40:00Z</published><updated>2008-11-10T06:40:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2008/11/10/1330514.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2008/11/10/1330514.html"/><content type="text">经常看到这样的声明：T&amp; func(T&amp; t); 这种声明和T func(T t)有什么区别？书上的解释是为了提高效率，究竟是如何提高效率的呢？内部执行了什么操作？本文通过8个小例子对引用参数和引用返回进行了一次彻底的排查。</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2008/11/08/1329858.html</id><title type="text">[转帖]无法将临时对象绑定到非常量引用</title><summary type="text">在Visual C++以前的版本中，可以将非常量引用绑定到临时对象。 现在，只能将临时对象绑定到常量引用。</summary><published>2008-11-08T14:49:00Z</published><updated>2008-11-08T14:49:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2008/11/08/1329858.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2008/11/08/1329858.html"/><content type="text">在Visual C++以前的版本中，可以将非常量引用绑定到临时对象。 现在，只能将临时对象绑定到常量引用。</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2008/11/08/1329577.html</id><title type="text">[原创]关于《精通QT4编程》第一个例子无法编译的问题的解答</title><summary type="text">最近开始研究QT4，买了一本《精通QT4编程》，在我的Ubuntu上安装了QT4和KDevelop，在命令行里手工写代码、编译的时候没有错误，可以成功运行，但是在KDevelop里建立了一个QT4工程后却发现无法成功编译，在链接时报出以下错误：undefined reference to `QApplication::QApplication(int&amp;, char**, int)'。</summary><published>2008-11-08T05:22:00Z</published><updated>2008-11-08T05:22:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2008/11/08/1329577.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2008/11/08/1329577.html"/><content type="text">最近开始研究QT4，买了一本《精通QT4编程》，在我的Ubuntu上安装了QT4和KDevelop，在命令行里手工写代码、编译的时候没有错误，可以成功运行，但是在KDevelop里建立了一个QT4工程后却发现无法成功编译，在链接时报出以下错误：undefined reference to `QApplication::QApplication(int&amp;, char**, int)'。</content></entry><entry><id>http://www.cnblogs.com/bigshow/archive/2008/11/01/1324450.html</id><title type="text">[转帖]在andLinux里显示中文</title><summary type="text">经过一段时间的拾掇，终于能够在andLinux下显示中文了。</summary><published>2008-11-01T13:54:00Z</published><updated>2008-11-01T13:54:00Z</updated><author><name>钱鑫</name><uri>http://www.cnblogs.com/bigshow/</uri></author><link rel="alternate" href="http://www.cnblogs.com/bigshow/archive/2008/11/01/1324450.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/bigshow/archive/2008/11/01/1324450.html"/><content type="text">经过一段时间的拾掇，终于能够在andLinux下显示中文了。</content></entry></feed>
