目前支持 WebGL 的浏览器有:Firefox 4+, Google Chrome 9+, Opera 12+, Safari 5.1+, Internet Explorer 11+和Microsoft Edge build 10240+;然而, WebGL一些特性也需要用户的硬件设备支持。 ...
分类:
Web程序 时间:
2020-07-04 15:16:17
阅读次数:
423
功能:输入一个正整数,按照从小到大的顺序输出它的所有质因子(重复的也要列举)(如180的质因子为2 2 3 3 5 ) 最后一个数后面也要有空格 思路:网上参考大佬的思路,自己怎么也想不出来 private static void shape(int n){ StringBuilder result ...
分类:
其他好文 时间:
2020-07-04 15:14:18
阅读次数:
71
前言 本系列全部基于 Spring 5.2.2.BUILD-SNAPSHOT 版本。因为 Spring 整个体系太过于庞大,所以只会进行关键部分的源码解析。 本篇文章主要介绍 Spring IoC 容器中 bean 的属性赋值阶段。 正文 我们在Spring IoC bean 的创建一文中分析创建 ...
分类:
编程语言 时间:
2020-07-04 13:53:35
阅读次数:
77
在执行 pip install 时遇到错误:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ...
分类:
编程语言 时间:
2020-07-04 13:51:56
阅读次数:
525
import 'dart:ui'; import 'package:flutter/material.dart'; class FrostedClassDemo extends StatelessWidget { @override Widget build(BuildContext context ...
分类:
其他好文 时间:
2020-07-04 13:35:48
阅读次数:
86
升级了 AdroidStudio到3.6.3,总是报找不到 gradle3.6.3 修改工程的 build.gradle,加入 google() 再同步就可以了 ext { var = '3.6.3' }// Top-level build file where you can add config ...
分类:
移动开发 时间:
2020-07-04 12:01:04
阅读次数:
132
1. 清除 git 的全局设置(针对已安装 git) 新安装 git 跳过。 若之前对 git 设置过全局的 user.name 和 user.email。类似 (用 git config --global --list 进行查看你是否设置) $ git config --global user.n ...
IDEA开发中启动 本地开发中常用 外置Tomcat中启动 接近淘汰 tomcat版本兼容问题复杂 微服务容器化部署复杂 Jar方式打包启动 官方推荐,工作中最陈昌勇 步骤:pom文件新增maven插件 <build> <plugins> <plugin> <groupId>org.springfr ...
分类:
编程语言 时间:
2020-07-03 23:13:34
阅读次数:
67
给你一个长度为 $n$ 的长字符串,完美子串既是它的前缀也是它的后缀,求完美子串的个数且统计这些子串的在长字符串中出现的次数。 ...
分类:
其他好文 时间:
2020-07-03 21:13:13
阅读次数:
50
终于找到一个能用的demo,待完善 1 # coding=utf-8 2 from pyecharts.charts import Bar 3 from pyecharts import options as opts 4 from pyecharts import faker 5 # from p ...
分类:
其他好文 时间:
2020-07-03 21:06:38
阅读次数:
58