摘要: 一、new创建 new运算符使用的一般格式为: new 类型 (初值) /new 类型 [大小] new动态创建二维数组的格式一般是这样: T (*p)[N] = new T [][N] 其中,T是某种类型,N是二维数组的列数。采用这种格式,列数必须指出,而行数无需指定。在这里,p的类型是TYPE* 阅读全文
posted @ 2022-01-22 20:45 Grit_L。 阅读(629) 评论(0) 推荐(0) 编辑
摘要: max() function is a library function of algorithm header, it is used to find the largest value from given two values, it accepts two values and return 阅读全文
posted @ 2022-01-22 11:52 Grit_L。 阅读(2766) 评论(0) 推荐(0) 编辑