上一页 1 2 3 4 5 6 7 8 ··· 18 下一页
摘要: Members that are const or reference must be initialized. Similary, members that are of a class type that does not define a default constructor also mu 阅读全文
posted @ 2017-03-15 00:35 TonyYPZhang 阅读(277) 评论(0) 推荐(0) 编辑
摘要: The fundamental ideas behind classes are data abstraction and encapsulation. Data abstraction is a programming technical that relies on the separation 阅读全文
posted @ 2017-03-15 00:15 TonyYPZhang 阅读(290) 评论(0) 推荐(0) 编辑
摘要: The inline functions are a C++ enhancement feature to increase the execution time of a program. Compiler replace the definition at compile time instea 阅读全文
posted @ 2017-03-12 22:03 TonyYPZhang 阅读(552) 评论(0) 推荐(0) 编辑
摘要: C++11 introduced serveral contructor-related enhancements including: Class member initializers Delegating controctors This article discusses about Cla 阅读全文
posted @ 2017-03-12 11:26 TonyYPZhang 阅读(875) 评论(0) 推荐(0) 编辑
摘要: Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. The update(i, val) function modifies nums by upd 阅读全文
posted @ 2017-03-06 00:31 TonyYPZhang 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: Statements A break statements terminate the nearest wile, do while, for or switch statement. A break affect only the nearest enclosing loop or switch. 阅读全文
posted @ 2017-02-25 22:23 TonyYPZhang 阅读(380) 评论(0) 推荐(0) 编辑
摘要: Access the elements of an Array Becuase the dimension is part of each array type. the system know how many elements are in scores. Pointers and Arrays 阅读全文
posted @ 2017-02-23 23:29 TonyYPZhang 阅读(314) 评论(0) 推荐(0) 编辑
摘要: Namespace Declarations A using declaration let us use a name from a namespace without qualify the name with a namespace_name:: prefix. A sperate using 阅读全文
posted @ 2017-02-22 21:56 TonyYPZhang 阅读(332) 评论(0) 推荐(0) 编辑
摘要: Getting Started compile C++ program source run C++ program The library, iostream, define four IO object: cin, cout, cerr, clog. The result of the outp 阅读全文
posted @ 2017-02-19 23:08 TonyYPZhang 阅读(297) 评论(0) 推荐(0) 编辑
摘要: Install TensorFlow on mac Install pip Install tensorflow Basic Usage The concepts in TensorFlow Tensor : a typed multi-dimensional array. Only Tensor 阅读全文
posted @ 2017-02-06 00:28 TonyYPZhang 阅读(325) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 18 下一页