1、Frame的基本属性 # -*- encoding=utf-8 -*- import tkinter from tkinter import * if __name__ == '__main__': win = tkinter.Tk() # 窗口 win.title('南风丶轻语') # 标题 ...
分类:
编程语言 时间:
2020-12-14 13:42:12
阅读次数:
6
JAVA面试常考系列七题目一Swing的方法中,有哪些是线程安全的?Swing的规则是:当Swing组件被具现化时,所有可能影响或依赖于组件状态的代码都应该在事件派发线程中执行。因此有3个线程安全的方法:repaint(),revalidate(),andinvalidate()。题目二Component子类中,哪些支持绘画功能在Canvas,Frame,Panel,和小程序类支持的绘画。题目三M
分类:
编程语言 时间:
2020-12-10 10:34:39
阅读次数:
6
本文转自: https://blog.csdn.net/yuhan_0590/article/details/85100246 spring默认使用yml中的配置,但有时候要用传统的xml或properties配置,就需要使用spring-boot-configuration-processor了 ...
分类:
编程语言 时间:
2020-12-05 10:55:23
阅读次数:
8
package Java2; import java.awt.*; public class demo02 { public static void main(String[] args) { //展示多个窗口 MyFrame myFrame1 = new MyFrame(100, 100, 200 ...
分类:
其他好文 时间:
2020-12-04 10:57:30
阅读次数:
7
在用spring配置文件applicationContext.xml中引入src下的properties文件 <context:property-placeholder location="classpath:jdbc.properties"/> <!-- DriveManagerDataSourc ...
分类:
数据库 时间:
2020-12-03 11:37:52
阅读次数:
11
在各项服务的调用过程中,难免出现断层,但是由于整个链路过于复杂难以排查,则使用zipkin可以清楚的看见每次访问的情况和整体的链路分布,及每个应用的依赖和被依赖的项目是什么。 1.下载zipkin https://dl.bintray.com/openzipkin/maven/io/zipkin/j ...
分类:
编程语言 时间:
2020-11-30 16:00:42
阅读次数:
8
题目 Petya has equal wooden bars of length n. He wants to make a frame for two equal doors. Each frame has two vertical (left and right) sides of length ...
分类:
其他好文 时间:
2020-11-30 16:00:25
阅读次数:
6
这篇文章主要介绍了CSS3 实现倒计时效果的示例代码,帮助大家更好的理解和使用CSS3,感兴趣的朋友可以了解下 实现效果 html 1 %div.wrapper 2 %div.time-part-wrapper 3 %div.time-part.minutes.tens 4 %div.digit-w ...
分类:
Web程序 时间:
2020-11-25 13:01:13
阅读次数:
24
CONCATENATE '无权限' p_str INTO msg. p_str = |{ p_str1 }'啊'|. LEAVE TO TRANSACTION sy-tcode. SELECTION-SCREEN: BEGIN OF BLOCK b01 WITH FRAME TITLE TEXT-0 ...
分类:
其他好文 时间:
2020-11-24 12:05:51
阅读次数:
9
# abc的类型为tbl_spark class(abc) #"tbl_spark" #列名 colnames(abc) #行数 abc %>% count() # 把abc转为data frame a <- data.frame(abc) class(a) #"data.frame" #行列数 d ...
分类:
其他好文 时间:
2020-11-21 12:35:33
阅读次数:
5