码迷,mamicode.com
首页 >  
搜索关键字:super jumping jumpin    ( 6798个结果
python 杀死线程的两种方式
方法一:强制杀死 import threading import time import inspect import ctypes def _async_raise(tid, exctype): if not inspect.isclass(exctype): raise TypeError("O ...
分类:编程语言   时间:2020-06-23 10:30:25    阅读次数:129
nazo.one-story 通关记录
游戏网址 攻略 level 1 网址:http://nazo.one-story.cn/nazo-1 请输入 答案 。 提示:到底是什么答案呢? 创意人:游戏作者 level 2 网址:http://nazo.one-story.cn/nazo-2 请输 入答案。 提示:第二题也不需要提示吧 创意人 ...
分类:其他好文   时间:2020-06-21 17:54:07    阅读次数:550
Pytorch加载预训练模型前n层
import torch.nn as nnimport torchvision.models as modelsclass resnet(nn.Module): def __init__(self): super(resnet,self).__init__() self.model = models ...
分类:其他好文   时间:2020-06-21 00:29:09    阅读次数:96
Python super方法及__setattr__方法详解
def __setattr__(self, name, value): """ Set the value of setting. Clear all cached values if _wrapped changes (@override_settings does this) or clear ...
分类:编程语言   时间:2020-06-20 10:19:43    阅读次数:112
基础数据类型
基础数据类型 出现原因 ? 让机器做出一些精准的区分,数字、汉字、英文...。 类型: 整数类型(int) : 1、2,3,4,5...;用来计算(+-*/...)。 字符串类型(str) : 单引号/双引号引起来的数据称之为字符串。 布尔值类型(bool) : 条件判断中使用:判断真假;True ...
分类:其他好文   时间:2020-06-19 23:24:10    阅读次数:114
Java并发编程基础(入门篇)
@ java中的多线程(入门) 1.线程 1.1多线程的执行原理 先以一个Java中多线程的Demo为例展开解释,请看代码: //自定义的多线程类 public class MyThread extends Thread{ public MyThread(String name){ super(na ...
分类:编程语言   时间:2020-06-18 12:58:55    阅读次数:43
开始学习前端
公司用的Ant-Design(基于Vue)和leaflet(一个Web地图框架)进行前端页面设计 超图为leaflet提供的开发包 https://iclient.supermap.io/web/introduction/leafletDevelop.html#editMapInformation ...
分类:其他好文   时间:2020-06-18 10:32:43    阅读次数:41
java线程、同步
线程、同步 第一章 线程 1.1 多线程原理 代码如下: 自定义线程类: public class MyThread extends Thread{ /** 利用继承中的特点 * 将线程名称传递 进行设置 */ public MyThread(String name){ super(name); } ...
分类:编程语言   时间:2020-06-17 23:12:19    阅读次数:62
【转】Spring中的@RequestBody注解与常规的HTTP方法的传值方式
地址:https://super-aviator.github.io/2019/08/30/Spring%E4%B8%AD%E7%9A%84-RequestBody%E6%B3%A8%E8%A7%A3/ 上周进行项目开发的时候,发现前端的含有文件的表单数据时后台接收报错,异常的大致意思是表单类型不支 ...
分类:编程语言   时间:2020-06-17 20:06:58    阅读次数:73
16. react - Fragment
1. Fragment : 可以理解为空标签。 类似与 微信小程序的 <block> 2. 实例: import { Fragment } from 'react' class LI extends React.Component { constructor (props) { super(prop ...
分类:其他好文   时间:2020-06-17 15:34:31    阅读次数:59
6798条   上一页 1 ... 19 20 21 22 23 ... 680 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!