码迷,mamicode.com
首页 >  
搜索关键字:pen    ( 14208个结果
qt 文本流&数据流
// 文本流 QFile file("aaa.txt"); file.open(QFileDevice::WriteOnly); QTextStream stream(&file); stream<<QString("hell oworld")<<123456; file.close(); // 读 ...
分类:其他好文   时间:2021-05-24 16:16:10    阅读次数:0
spring boot配置多数据源
1、pom.xml文件 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.springframework. ...
分类:编程语言   时间:2021-05-24 15:52:36    阅读次数:0
ajax做的一些总结
以下是我对ajax做的一些总结,仅供记录,有不对的地方欢迎指正。 1, ajax的出现改变了网页交互方式,之前是更新网页需要重复加载整个网页,ajax出现之后,只需要根据需求请求,然后根据返回数据更改页面需要变更的地方,大大提高了网页性能。 2, ajax的使用形式: 实例化一个XMLHttpReq ...
分类:Web程序   时间:2021-05-24 14:38:13    阅读次数:0
Vue报错(element UI):type check failed for prop "uniqueOpened". Expected Boolean, got String.
报错信息: 报错代码: 报错原因: 期望布尔值,得到字符串 1 解决方法: 解决: ...
分类:其他好文   时间:2021-05-24 14:19:10    阅读次数:0
AZ303-AZURE STORAGE ACCOUNT
An Azure storage account contains all of your Azure Storage data objects: blobs, file shares, queues, tables, and disks. The storage account provides ...
分类:其他好文   时间:2021-05-24 14:07:40    阅读次数:0
每日leetcode-数组-661. 图片平滑器
分类:数组-二维数组及滚动数组 题目描述: 包含整数的二维矩阵 M 表示一个图片的灰度。你需要设计一个平滑器来让每一个单元的灰度成为平均灰度 (向下舍入) ,平均灰度的计算是周围的8个单元和它本身的值求平均,如果周围的单元格不足八个,则尽可能多的利用它们。 解题思路: 遍历矩阵 对于矩阵中的每一个单 ...
分类:编程语言   时间:2021-05-24 13:19:23    阅读次数:0
画一个五环代码,笨代码
import turtle turtle.width(20) turtle.color("red") turtle.circle(50) turtle.penup() turtle.goto(150,0) turtle.pendown() turtle.width(20) turtle.color( ...
分类:其他好文   时间:2021-05-24 12:47:05    阅读次数:0
Python画一个四点连线并计算首尾距离
import turtle import math #先定义4个坐标 x1,y1=100,100 x2,y2=100,-100 x3,y3=-100,-100 x4,y4=-100,100 #然后画折线 turtle.penup() turtle.goto(x1,y1) turtle.pendown ...
分类:编程语言   时间:2021-05-24 12:46:21    阅读次数:0
spring xml 解析bean配置文件为beanDefinition过程
public AbstractBeanDefinition parseBeanDefinitionAttributes(Element ele, String beanName, @Nullable BeanDefinition containingBean, AbstractBeanDefinit ...
分类:编程语言   时间:2021-05-24 11:55:36    阅读次数:0
C#中Application.StartupPath和System.Environment.CurrentDirectory的区别
System.Environment.CurrentDirectory的含义是获取或设置当前工作路径,而Application.StartupPath是获取程序启动路径,表面上看二者没什么区别,但实际上区别很大。先说前者:比如说你程序放在桌面上启动,但是中间你用了一个OpenFileDialog打开 ...
分类:移动开发   时间:2021-05-24 10:18:06    阅读次数:0
14208条   上一页 1 ... 7 8 9 10 11 ... 1421 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!