最近公司有一个需求,需要暴露当前web项目的接口给第三方系统调用,网上查到webservice是跨平台、跨语言的应用技术,所以作为首选。 查找了很多例子,都是很简单的加@WebService到类,加@WebMethod到暴露的方法上,然后EndPoint.publish即可,但我在web项目中使用, ...
分类:
编程语言 时间:
2020-12-10 11:32:46
阅读次数:
16
坐标轴上,有一个以 $(0,0)$ 为圆点,$d$ 为半径的圆。现在 Ashish 和 Utkarsh 玩游戏,Ashish 是先手。在 $(0,0)$ 处有一颗棋子,两人轮流将棋子向上或向右移动 $k$ 个单位,棋子不能移出圆,谁无法移动谁输。 ...
分类:
其他好文 时间:
2020-12-09 12:33:28
阅读次数:
21
[2020.12.4周五] 圆上对称博弈 1451D - Circle Game 题解:注意到后手总可以使点走在(k,k)上,所以如果(k,k)是必胜态,则后手胜;否则先手总可以使(n*k+k,k)上,如果这是必胜态则先手赢 tag:对称博弈 #include<bits/stdc++.h> usin ...
分类:
其他好文 时间:
2020-12-09 12:15:50
阅读次数:
5
https://www.bilibili.com/video/BV1V4411p7EF/ 简介 程序:指令和数据的有序集合,其本身没有任何运行的含义,是一个静态的概念。 进程Process:执行程序的一次执行过程,它是一个动态的概念。是系统资源分配的单位。一个进程中可以包含多个线程,至少有一个线程, ...
分类:
编程语言 时间:
2020-12-09 11:44:47
阅读次数:
8
参考 https://www.cnblogs.com/wanmeishenghuo/tag/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/ https://blog.51cto.com/13475106/category6.html 前几节课我们演示了从实模式进入到保护模 ...
分类:
其他好文 时间:
2020-12-09 11:33:58
阅读次数:
4
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp ...
分类:
其他好文 时间:
2020-12-04 11:23:41
阅读次数:
6
独立精神 https://indienova.com/ Unity Asset Store https://assetstore.unity.com/ CraftPix https://craftpix.net/ Game Art Partners https://gameartpartners.c ...
分类:
其他好文 时间:
2020-12-03 12:20:54
阅读次数:
4
decltype介绍 为什么需要decltype decltype(auto) 注意(entity) 与模板参数推导和auto推导一样,decltype的结果大多数情况下是正常的,但是也有少部分情况是反直觉的。 decltype介绍 给定一个name或者expression,decltype会告诉你 ...
分类:
编程语言 时间:
2020-12-03 11:29:37
阅读次数:
8
1、数字 int(整型) 在32位机器上,整数的位数为32位,取值范围为-2**31~2**31-1,即-2147483648~2147483647 在64位系统上,整数的位数为64位,取值范围为-2**63~2**63-1,即-9223372036854775808~922337203685477 ...
分类:
编程语言 时间:
2020-11-30 15:51:46
阅读次数:
10
void gridView1_MouseDown(object sender, MouseEventArgs e) { GridHitInfo info; Point pt = winGridView1.gridView1.GridControl.PointToClient(Control.Mous ...
分类:
其他好文 时间:
2020-11-26 15:06:38
阅读次数:
5