摘要:
XML 一、简介 XML 被设计用来传输和存储数据。 HTML 被设计用来显示数据。 XML 指可扩展标记语言( EX tensible M arkup L anguage) XML 是一种 标记语言 ,很 类似 HTML XML 的设计宗旨是 传输数据 ,而非显示数据 XML 标签没有被预定义。您 阅读全文
摘要:
``` c++ 英文解释: if you declare a method to be static in your .cc file. The reason is that static means something different inside .cc files than in class declarations It is really stupid, but the keywor 阅读全文
摘要:
in C++, cannot assign a pointer to an array. c++中char 与char[]不是一种类型,但是在C里面可以,所以尽量使用C++中的类,如string, vector等等。若非一定要解决这个问题,可以使用`char ptr = new char[2];` 阅读全文