/* * 接口的使用 * 1.接口使用上也满足多态性 * 2.接口,实际上就是定义了一种规范 * 3.开发中,体会面向接口编程! */ public class USBTest { public static void main(String[] args) { Computer com = new ...
分类:
其他好文 时间:
2021-04-01 13:43:59
阅读次数:
0
1 class Solution { 2 private: 3 int maxSum = INT_MIN; 4 5 public: 6 int maxGain(TreeNode* node) { 7 if (node == nullptr) { 8 return 0; 9 } 10 11 // 递归 ...
分类:
其他好文 时间:
2021-04-01 13:30:06
阅读次数:
0
我们想要发起 get 或者 post 请求,我们需要有接口地址和必要的参数; 我们可以在 聚合数据网站找到免费的接口地址,让我们来练习:https://www.juhe.cn/ 注册实名认证一下就可以用了 老黄历接口可以发起get和post请求 1、发起 get 请求 第一步:右击“测试计划”添加“ ...
分类:
其他好文 时间:
2021-04-01 13:15:44
阅读次数:
0
1、现象 在 /etc/profile里加了环境变量,但是重启这个环境变量未加入成功 2、原因 可能是被其他加载环境变量的脚本刷掉了 参考:https://blog.csdn.net/my_wings/article/details/102617631 3、解决 在.bashrc里添加 vim ~/ ...
分类:
系统相关 时间:
2021-04-01 13:12:59
阅读次数:
0
//js /** * 函数节流 * @param func * @param wait * @returns {function(...[*]=)} */ export const throttle = (func, wait = 1500) => { let timeout; return fun ...
分类:
其他好文 时间:
2021-04-01 12:56:04
阅读次数:
0
/* // Definition for a Node. class Node { public: int val; Node* left; Node* right; Node* next; Node() : val(0), left(NULL), right(NULL), next(NULL) { ...
分类:
其他好文 时间:
2021-03-31 12:27:25
阅读次数:
0
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:
其他好文 时间:
2021-03-31 12:16:53
阅读次数:
0
字典 字典是 "键值对" 的无序可变序列,字典中的每个元素都是一个 "键值对" , 包含:'键对象' 和 '值对象'。可以通过 '键对象' 实现快速获取、删除、更新对应的 '值对象'。 列表中我们通过 '下表数字'找到对应的对象。字典中通过 '键对象'找到对应的 '值对象'。 '键' 是任意不可变数 ...
分类:
其他好文 时间:
2021-03-31 12:13:54
阅读次数:
0
Telerik UI for Xamarin能帮助开发人员快速构建跨平台移动应用的原生UI。Telerik UI for Xamarin使用Xamarin.Forms技术,它可以让开发人员从一个单一的共享C#代码库中创建原生的iOS、Android和Windows Phone应用程序。不仅如此,UI ...
分类:
移动开发 时间:
2021-03-31 11:48:03
阅读次数:
0
print(chr(10000), end=" ") print(chr(0x025b), end=" ") print(chr(0x2708), end=" ") print(chr(0x00A5), end=" ") print(chr(0x266b)) ...
分类:
其他好文 时间:
2021-03-31 11:47:46
阅读次数:
0