码迷,mamicode.com
首页 >  
搜索关键字:highlight    ( 8728个结果
P2872 [USACO07DEC]Building Roads S
#include <cmath> #include <cstdio> #include <iostream> #include <algorithm> using namespace std; const int N = 5000100; int n, m, cnt, fa[N], sum; dou ...
分类:其他好文   时间:2020-05-01 16:38:02    阅读次数:54
MySql管理
1.用户设置 root@host# mysql -u root -p Enter password:******* mysql> use mysql; Database changed mysql> INSERT INTO user (host, user, password, select_pri ...
分类:数据库   时间:2020-05-01 16:34:02    阅读次数:71
【小米OJ-找多少个等差数列】动态规划
#include<stdio.h> #include<string.h> int arr[110]; int sum = 0; int dp[201][402]; int num[201]; int main() { int x; char ch; int len=0; while(~scanf(" ...
分类:移动开发   时间:2020-04-30 23:31:44    阅读次数:121
路由跳转后的兄弟组件传值
我要从一个页面跳到另一个页面,同时实现传值 网上说了很多兄弟传值,什么bus,不管用,反正我试不灵,也可能我的方法不对 从creatTable传值传到Props那个, 1.这个creatTable中的一个method中的一个方法里的部分 this.$router.push({ path: "crea ...
分类:其他好文   时间:2020-04-30 19:12:34    阅读次数:60
ES6语法-函数
1 函数 默认参数 定义默认参数的时候,默认参数必须要在非默认参数的后面。 function person(name,age=18,gender='男'){ console.log(name,age,gender); } function person(name,{age=18,gender='女' ...
分类:其他好文   时间:2020-04-30 15:44:49    阅读次数:61
让我们好好聊聊Unity Shader中的multi_complie
https://zhuanlan.zhihu.com/p/77043332 一,multi_complie 还是 shader_feature shader_feature 和 multi_complie 是两个很相似的预编译指令,在Editor模式下,他们是几乎没有区别的。 共同点是: 声明Key ...
分类:编程语言   时间:2020-04-29 23:10:15    阅读次数:179
apache http调用设置超时时间
import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.client.config.RequestConfig;import org.apache.http.client ...
分类:Web程序   时间:2020-04-29 21:50:26    阅读次数:166
C语言打印菱形数字
问题:从键盘输入一个整数n(1≤n≤9),打印出指定的数字图形。如下所示,输入5,打印出: 1 121 12321 1234321 123454321 1234321 12321 121 1 #include <stdio.h> void main() { int i,j,n; scanf("%d" ...
分类:编程语言   时间:2020-04-29 20:23:51    阅读次数:91
Java 高并发与多线程;:synchronized 关键字的实现原理
synchronzied 关键字应该是 Java 并发编程中最重要的内容了,甚至没有之一。在 JDK6 以前,synchronized 关键字还代表着一把重量级锁,因此在 JUC 包里还推出了 Lock 类来替代 synchronized,不过 JDK6 以后的 synchronized 经过优化, ...
分类:编程语言   时间:2020-04-29 14:48:07    阅读次数:91
[BJDCTF2020]Cookie is so stable && [GWCTF 2019]枯燥的抽奖
[BJDCTF2020]Cookie is so stable 进入环境后看到有hint,点击之后查看源代码 提示我们cookie有线索 flag页面是: 需要输入一个username,或许这道题目是cookie伪造,随便输入一个username 输入的结果显示在了页面上,很容易能想到注入,抓包 c ...
分类:其他好文   时间:2020-04-29 14:33:01    阅读次数:103
8728条   上一页 1 ... 56 57 58 59 60 ... 873 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!