-
[置顶]小程序引擎(开源小程序引擎)
本文目录一览:1、做一个小程序需要具备什么技术?2、企业是否需要制作小程序?怎么做企业小程序?3、taro 怎么集成 android sdk?4、百度小程序有什么特点?5、qq小程序基础引擎加载失败怎...
-
小朋友学C++(11):“箭头(->)”和“点号(.)”操作符的区别
小朋友学C++(11):“箭头(-˃)”和“点号(.)”操作符的区别先看一个程序:#include using namespace std;class A{public: void play()...
-
小朋友学C++(9):构造函数的默认参数
小朋友学C++(9):构造函数的默认参数构造函数可以预先赋一个初值,其作用是:在构造函数被调用时,省略部分或全部参数,这时就会使用默认参数代替实参。程序:#include using namespac...
-
小朋友学C++(3):类与对象
小朋友学C++(3):类与对象(一)类与对象类是由我们根据客观事物抽象而成,形成一类事物,然后用类去定义对象,形成这类事物的具体个体。比如小狗是一个类,你家的“旺财”则是小狗一个具体的对象。(二)属性...
-
328. Odd Even Linked List
328. Odd Even Linked ListGiven a singly linked list, group all odd nodes together followed by the ev...
-
152. Maximum Product Subarray
152. Maximum Product SubarrayFind the contiguous subarray within an array (containing at least one n...
-
114. Flatten Binary Tree to Linked List
114. Flatten Binary Tree to Linked ListGiven a binary tree, flatten it to a linked list in-place.For...
-
HTTP和HTTPS
HTTP和HTTPSHTTP协议通常承载于TCP协议之上,在HTTP和TCP之间添加一个安全协议层(SSL或TSL),这个时候,就成了我们常说的HTTPS。默认HTTP的端口号为80,HTTPS的端口...
-
-
38. Count and Say
38. Count and SayThe count-and-say sequence is the sequence of integers with the first five terms as...
-
825. Friends Of Appropriate Ages
825. Friends Of Appropriate AgesSome people will make friend requests. The list of their ages is giv...