如题,直接序列化会报错, 好像百度不到, 自已看了半个小时的官方文档, 摸索出来了, 需要 实现一个 IMessagePackFormatter<Color> 接口, 代码如下: 1 using MessagePack; 2 using MessagePack.Formatters; 3 using ...
大量的等待事件,系统缓慢,从AWR看DBtime已经满负载了,主要等待事件如下 Enq: KO - Fast Object Checkpoint 占比DBTime的45%。通过ASH查询阻塞关系,等待该事件的用户SQL都被796会话阻塞,而该用户是CKPT进程。 SYS@orcl1>select s ...
分类:
其他好文 时间:
2021-04-14 12:38:41
阅读次数:
0
约瑟夫环 题目: 剑指 Offer 62. 圆圈中最后剩下的数字 5727. 找出游戏的获胜者 1、数学解法就是通过倒推,求出队伍长度为n时,(n=1)的下标会变成什么。 class Solution { public int lastRemaining(int n, int m) { int an ...
分类:
其他好文 时间:
2021-04-12 12:42:41
阅读次数:
0
原题链接 题解:注意建立边 代码: #include <iostream> #include <algorithm> #include <cstring> #include <cmath> using namespace std; const int N = 5e3 + 9; const int M ...
分类:
其他好文 时间:
2021-04-12 12:34:29
阅读次数:
0
哈喽大家好,上次我们说了一圈TCP的发送和接受,其实不太准确,上次说的是TCP的客户端的收发。这次我们说一说服务器端的收发。 业务场景是这样 首先服务器开启监听,客户端在开启后去和服务器端连接,给服务器端一个“信号”,然后服务器端吧内容返回给客户端。 接下来,看代码。 using (Socket s ...
最近迁移项目到UnityXR框架,发现UnityXR框架使用了新的输入系统(InputSystem)然后就学习了一下。 using System.Collections; using System.Collections.Generic; using UnityEngine; using Unity ...
分类:
编程语言 时间:
2021-04-10 13:33:21
阅读次数:
0
1. Debug 1.1 Debug概述 1.2 Debug操作流程 1.2.1 如何加断点 1.2.2 如何运行加了断点的程序 1.2.3 看哪里 1.2.4 点哪里 1.2.5 如何删除断点 多个断点,一次性全部删除:Run -> View Breakpoints打开如下页面。 1.3 Debu ...
分类:
编程语言 时间:
2021-04-10 13:25:36
阅读次数:
0
Alex and Lee play a game with piles of stones. There are an even number of piles arranged in a row, and each pile has a positive integer number of sto ...
分类:
其他好文 时间:
2021-04-10 13:23:44
阅读次数:
0
JavaScript语言中,生成实例对象的传统方法是通过构造函数 function Point(x,y){ this.x = x; this.y = y; } Point.prototype.toString = function (){ return '('+this.x + ',' + this ...
分类:
其他好文 时间:
2021-04-09 13:35:12
阅读次数:
0
\(dp[0/1][i]\) :有 \(i\) 颗石子 Alice/Bob 为先手,Alice 赢的概率 令 \(P\) 为 Alice 拿走石子的概率, \(Q\) 为 Bob 拿走石子的概率。 $$\begin dp[0][i]=dp[1][i-1] * P+dp[1][i] * (1-P) \ ...
分类:
其他好文 时间:
2021-04-09 13:18:19
阅读次数:
0