1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int a, b; 10 scanf("%d %d", &a, &b); 11 12 printf("%d + ...
分类:
其他好文 时间:
2020-05-06 12:18:02
阅读次数:
67
#define EVENTBIT_0 (1<<0) //ʼþλ#define EVENTBIT_1 (1<<1)#define EVENTBIT_2 (1<<2)#define EVENTBIT_ALL (EVENTBIT_0|EVENTBIT_1|EVENTBIT_2) 1.创建事件组 Ev ...
分类:
其他好文 时间:
2020-05-06 12:01:50
阅读次数:
56
1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode(int x) : val(x), ...
分类:
其他好文 时间:
2020-05-06 11:59:27
阅读次数:
66
https://stackoverflow.com/questions/59366046/how-to-handle-appsettings-for-net-core-3-1-self-contained-single-file-publish ...
分类:
移动开发 时间:
2020-05-06 11:43:00
阅读次数:
76
1.什么是弧度? 弧度又称弪度,是平面角的单位,也是国际单位制导出单位。单位弧度定义为圆弧长度等于半径时的圆心角。角度以弧度给出时,通常不写弧度单位,或有时记为rad。 一个完整的圆的弧度是2π,所以2π rad = 360°,1 π rad = 180°,1°=π/180 rad,1 rad = ...
分类:
其他好文 时间:
2020-05-06 09:13:06
阅读次数:
69
1、下面回车 psvm public static void main(String[] args){} sout System.out.println(); 2、写完,就即时保存了,不需要按ctrl+s 3、写完代码,就编译好了,直接运行即可 ...
分类:
其他好文 时间:
2020-05-06 01:49:39
阅读次数:
68
原文:WPF 通过Win32SDK修改窗口样式 使用函数为 SetWindowLong GetWindowLong 注册函数 [DllImport("user32.dll", EntryPoint = "GetWindowLong")] public static extern int GetWin... ...
这件事情零零散散的我从我爸那里听了许多次了,今天第一次听到了详细的完整版。 这件事情我一定要记下来,用来讲给外人听,也或者是给我自己看。 我奶奶大概三四十岁的时候,养了一条母狗,那个时候我爸也不小了,刚参加工作。 那个时候我们加穷(当然那个时候还没有我),连门都没有,只能养一条狗来看“门”,就是这条 ...
分类:
其他好文 时间:
2020-05-06 01:35:03
阅读次数:
157
原文:WPF XAML Trigger中使用动画后 动画对象冻结的处理办法 在编写XAML时 在Trigger中使用动画,在动画之后,动画对象就会被冻结,无法被其他动画或者属性改变。 处理办法有: 1 使用附加属性来添加动画 public static readonly DependencyProp... ...