Js得到选中的文字 (function getSelectionText() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.selection && document ...
分类:
其他好文 时间:
2021-06-28 21:07:38
阅读次数:
0
WPF的设计理念是:数据驱动,UI与逻辑松耦合 一、传统的CLR属性 public class Person { private string _Name; public string Name { get { return _Name; } set { _Name = value; } } } 二 ...
编译器会给类的非静态成员函数添加一个this参数。 int square(int num) { return num * num; } class Hehe{ public: int square(int num) { return num * num; } }; int main() { int ...
分类:
其他好文 时间:
2021-06-28 20:58:16
阅读次数:
0
最近在gpu上做实验比较频繁,故记录下常用命令,以便复制粘贴 1. 后台运行py文件,并保存日志 nohup python -u prepro_feats_gpu.py> frats.out 2>&1 & frats.out 为保存的日志文件名 2.查看日志文件 tail -f frats.out ...
分类:
系统相关 时间:
2021-06-28 20:45:56
阅读次数:
0
题目链接:用最少数量的箭引爆气球 题目描述: 题解: class Solution { public: static bool cmp(vector<int> &a, vector<int> &b) //按右边界排序 { return a[1] < b[1]; } int findMinArrowS ...
分类:
其他好文 时间:
2021-06-28 20:44:14
阅读次数:
0
问题:按照正常的程序将session 共享引入工程,但是一直取不到 原因:springboot 的版本不同导致,存session的springboot 用的是springboot1.5.6,而取session的springboot版本是2.1.5。 解决方式1:统一springboot的版本(特别推 ...
分类:
其他好文 时间:
2021-06-28 20:43:18
阅读次数:
0
经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。 1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格: alias st="git status" alias pull='git pull' alias push='git push' ...
分类:
系统相关 时间:
2021-06-28 20:41:29
阅读次数:
0
在IntelliJ IDEA中,显示了Maven的Lifecycle: 只需要学习这些命令,就能构建一个Maven项目。 三个内置生命周期 Maven内置了三个生命周期:clean、default和site。生命周期是由多个顺序执行的阶段组成,它们的关系和说明如下: clean 清理文件。 pre- ...
分类:
其他好文 时间:
2021-06-28 20:38:37
阅读次数:
0
Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order ...
分类:
其他好文 时间:
2021-06-28 20:35:29
阅读次数:
0
简介 sh是Unix最初使用的shell,Linux默认为bash,是sh的扩展。 source <FileName>:在当前bash环境下,读取并执行FileName中的命令,该FileName可以无执行权限,该命令可以用命令.代替; sh <FileName>或者bash <FileName>: ...
分类:
系统相关 时间:
2021-06-28 20:30:05
阅读次数:
0