码迷,mamicode.com
首页 > 2021年04月10日 > 全部分享
4.9
package test; public class test1 { public static void main(String args[]){ //使用for循环计算1-100的和,除了以3结尾的那些数 int sum = 0; for(int x = 1;x<=100;x++){ if(x% ...
分类:其他好文   时间:2021-04-10 13:09:10    阅读次数:0
OpenWrt创建新用户及搭建samba服务器
1.安装依赖的软件包 opkg install shadow-common opkg install shadow-useradd 2、搭建samba服务器 opkg update opkg install samba36-server opkg install luci-app-samba opk ...
分类:其他好文   时间:2021-04-10 13:08:52    阅读次数:0
Django的orm数据库操作
一、创建表 创建模型 创建名为book的app,在book下的models.py中创建模型: from django.db import models # Create your models here. class Book(models.Model): id=models.AutoField(p ...
分类:数据库   时间:2021-04-10 13:08:36    阅读次数:0
pyqt5 QLabel 加边框并设置边框样式
代码 # -*- coding: utf-8 -*- from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QFrame, QApplication, QMainWindow import sys class Ui_MainW ...
分类:其他好文   时间:2021-04-10 13:08:17    阅读次数:0
int func(int n){ int i = 0,sum = 0; while(s < n) s += ++i; return i; }
int func(int n){ int i = 0,sum = 0; while(sum < n) sum += ++i; return i; } 求时间复杂度 A. O(logn) B. O(n^1/2) C. O(n) D. O(nlogn) ++i, i = 1,2,3,4,5,···,k。 ...
分类:其他好文   时间:2021-04-10 13:08:02    阅读次数:0
C# WinForm遍历窗体控件的3种方法
1.循环遍历 private void GetControls(Control fatherControl) { Control.ControlCollection sonControls = fatherControl.Controls; foreach (Control control in s ...
分类:Windows程序   时间:2021-04-10 13:07:49    阅读次数:0
C#调用matlab中出现的一个棘手问题
C#调用matlab编写的程序时,要先将m文件在matlab中打包,然后将打包好的dll文件添加到C#的‘引用’栏。(参考https://blog.csdn.net/a345758541/article/details/83893871); 说一下我遇到的问题,出现数据初始化的问题,报错三个,解决办 ...
分类:Windows程序   时间:2021-04-10 13:07:33    阅读次数:0
用c语言,制作一个心形彩色告白图案(附源码)
今天我们来一个好玩的,用c语言,制作一个心形彩色告白图案。 送给c语言初学者 心形彩色代码代码: #include<stdio.h> #include<math.h> #include<windows.h> #include<time.h> #define u 0.1 #define v 0.053 ...
分类:编程语言   时间:2021-04-10 13:07:14    阅读次数:0
vue杂记
watch 对象点属性的监听 watch: { "search.currentPage": function () { this.account2page(); } }, formvalidation remote data 的问题 formvalidation在修改页面验证用户名是否唯一时,传递的 ...
分类:其他好文   时间:2021-04-10 13:06:54    阅读次数:0
.Net5使用EFCore CodeFirst模式 数据迁移并实现DBContext依赖注入
1.新建空白解决方案 EFCoreDemo ,添加一个Api项目 EFCoreDemo.API 和一个类库 EFCoreDemo.Model 2.EFCoreDemo.Model 中使用NuGet添加依赖项 : Microsoft.EntityFrameworkCore Microsoft.Enti ...
分类:数据库   时间:2021-04-10 13:06:42    阅读次数:0
用IDEA导入项目时,项目中的SpringBoot注解无法识别
问题描述:在用IDEA导入项目时,项目中的SpringBoot注解都无法识别,但SpringBoot的包已经导入 解决方案: 将项目文件把.idea文件夹和.iml文件都删了,重新引入; 打开项目时直接open,不需要import; 重新打开项目后需要再次导入maven中添加的依赖。 原文链接:ht ...
分类:编程语言   时间:2021-04-10 13:06:23    阅读次数:0
Spring Boot 配置 Swagger(3.0.0 版本)
添加 Swagger 依赖 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter --> <dependency> <groupId>io.springfox</groupId> <artifactId ...
分类:编程语言   时间:2021-04-10 13:06:00    阅读次数:0
sudo/su命令免密执行
sudo是linux系统管理指令,是允许系统管理员让普通用户执行一些或者全部的root命令的一个工具,如halt、reboot、su等等。 登录到root用户 将用户加入sudoers visudo //或者vi /etc/sudoers 移动光标,到一行root ALL=(ALL) ALL的下一行 ...
分类:其他好文   时间:2021-04-10 13:05:39    阅读次数:0
Python数据分析入门(十二):数据聚合与分组
什么是分组聚合? 如图: groupby:(by=None,as_index=True) by:根据什么进行分组,用于确定groupby的组 as_index:对于聚合输出,返回以组便签为索引的对象,仅对DataFrame df1 = pd.DataFrame({'fruit':['apple',' ...
分类:编程语言   时间:2021-04-10 13:05:19    阅读次数:0
用户登录成功后重新获取新的Session
HttpSession session = request.getSession(); // 用来存储原sessionde的值 ConcurrentHashMap concurrentHashMap = new ConcurrentHashMap(); Enumeration enumeration ...
分类:其他好文   时间:2021-04-10 13:05:06    阅读次数:0
python习题,关于函数的练习03
习题1 请写出下列代码的执行结果: 例1: def func1(): print('in func1') def func2(): print('in func2') ret = func1 ret() ret1 = func2 ret1() ret2 = ret ret3 = ret2 ret2( ...
分类:编程语言   时间:2021-04-10 13:04:44    阅读次数:0
vscode常见插件及使用
####################### vscode的插件默认安装位置 : C:\Users\你的用户名\.vscode\extensions ###################### ...
分类:其他好文   时间:2021-04-10 13:04:26    阅读次数:0
151条   上一页 1 ... 3 4 5 6 7 8 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!