1 #include <iostream> 2 #include <cstdio> 3 #include <memory.h> 4 using namespace std; 5 const int INF=0x3f3f3f3f,city=4; 6 int main(){ 7 int a[city][ ...
分类:
其他好文 时间:
2020-11-19 12:53:22
阅读次数:
10
参照自文档http://www.cplusplus.com/reference/array/,教程http://c.biancheng.net/view/6688.html,和书籍《STL源码剖析》(侯捷) 定义: template < class T, class Alloc = allocato ...
分类:
其他好文 时间:
2020-11-19 12:34:47
阅读次数:
6
Linux下获取当前的目录,需执行以下命令: $(cd `dirname $0`;pwd) 其中, dirname $0,取得当前执行的脚本文件的父目录 cd `dirname $0`,进入这个目录(切换当前工作目录) pwd,显示当前工作目录(cd执行后的) 在使用的过程中需注意此事项:命令中“` ...
分类:
系统相关 时间:
2020-11-18 13:15:34
阅读次数:
40
一、使用view形式的回到顶部 wxml: <image src='图标' hidden='{{!floorstatus}}' bindtap="goTop"></image> wxss: /* 返回顶部 */ .goTop{ height: 80rpx; width: 80rpx; positio ...
分类:
微信 时间:
2020-11-18 12:59:46
阅读次数:
32
1、HttpRequest对象的属性和方法 http请求:HttpRequest对象 def seetl(request): request.path # 请求页面全路径(不包括域名)request.get_full_path()请求路径中会加入相关参数(针对于GET请求) request.meth ...
分类:
其他好文 时间:
2020-11-18 12:41:46
阅读次数:
7
1、什么是Django Django是python下的一个重量级的一个web框架,Django也是一个有python语言开发的一个开源框架,Django 采用了 MVT 的软件设计模式,即模型(Model),视图(View)和模板(Template)。使用 Django,只要很少的代码,Python ...
分类:
其他好文 时间:
2020-11-17 12:16:19
阅读次数:
5
MVC是对Web层做了进一步的划分,更加细化 Model(模型) - 模型代表一个存取数据的对象或 JAVA POJO。View(视图) - 视图代表模型包含的数据的可视化,比如HTML,JSP,Thymeleaf,FreeMarker等等Controller(控制器) - 控制器作用于模型和视图上 ...
分类:
Web程序 时间:
2020-11-16 13:30:01
阅读次数:
17
创建Flutter项目有很多种方法,各个IDE工具也都集成了创建Flutter项目的快捷操作。我们这里列举三种方式:使用命令行创建、使用Android Studio创建和使用VSCode创建。
分类:
其他好文 时间:
2020-11-12 14:27:21
阅读次数:
13
tsx: import React, { useState } from 'react' import Taro from '@tarojs/taro' import { View, Text, Input } from '@tarojs/components' import './index.sc ...
分类:
移动开发 时间:
2020-11-12 14:22:14
阅读次数:
17