1 包对象 基本介绍:包可以包含类、对象和特质trait,但不能包含函数/方法或变量的定义。这是Java虚拟机的局限。为了弥补这一点不足,scala提供了包对象的概念来解决这个问题。 package com.atguigu { //每个包都可以有一个包对象。你需要在父包(com.atguigu)中定 ...
分类:
其他好文 时间:
2020-07-07 17:44:36
阅读次数:
61
先上效果图 难点 一般解析的json { "code": "0000", "desc": null, "token": "ad762d27-ced6-4092-b415-ddad8ee0b98e__1472123395714", "msg": [ { "amount": 601, "consigne ...
分类:
移动开发 时间:
2020-07-07 15:09:59
阅读次数:
191
mysql计算排名,获取行号rowno 学生成绩表数据 SELECT * FROM table_score ORDER BY score DESC; 获取某个学生成绩排名并计算该学生和上一名学生成绩差,是并列排名 SELECT *, (SELECT count(DISTINCT score) FRO ...
分类:
数据库 时间:
2020-07-07 13:15:14
阅读次数:
70
select*fromt_TableDescriptionwhereFDescriptionlike‘%采购%‘t_TableDescription大多数表格查询FDescription表格名称描述字段poorder采购订单表头poorderentry采购订单表体select*fromt_FieldDescriptionwhereFTableID=‘200006‘
分类:
数据库 时间:
2020-07-07 09:25:51
阅读次数:
64
-- 创建数据库 create database python_test charset=utf8; -- 查看数据库 show databases; -- 使用数据库 use python_test; -- 显示当前使用那个数据库 select database(); -- 创建一个数据表 存0 ...
分类:
数据库 时间:
2020-07-07 09:15:35
阅读次数:
75
$where['title'] = array(['like', "%bh%"],['like',"%nk%",'or'); $data=M('news') ->field('id,title,keyword') ->where($where) ->order('add_time DESC') -> ...
分类:
其他好文 时间:
2020-07-06 19:35:47
阅读次数:
57
原文地址:https://www.wjcms.net/archives/%E4%BB%8E%E9%9B%B6%E5%88%9B%E5%BB%BA%E5%8F%91%E5%B8%83%E5%B1%9E%E4%BA%8E%E8%87%AA%E5%B7%B1%E7%9A%84composer%E5%8C% ...
分类:
其他好文 时间:
2020-07-06 16:14:30
阅读次数:
50
public final boolean isSubPath(ListNode head, TreeNode root) { if (root == null) { return false; } Stack<TreeNode> stack = new Stack<TreeNode>(); stac ...
分类:
其他好文 时间:
2020-07-05 23:20:05
阅读次数:
68
常用函数二:文本分词 方式一:jieba分词+停用词+自定义词典 # -*- coding: utf-8 -*- """ Datetime: 2020/06/25 Author: Zhang Yafei Description: 文本分词 输入 停用词文件路径 词典文件路径 分词文件路径 表名(可选 ...
分类:
编程语言 时间:
2020-07-05 21:25:01
阅读次数:
46
excepInfo: select id,describe from iwebshop_student_problem where id=256 order by id desc -- You have an error in your SQL syntax; check the manual th ...
分类:
数据库 时间:
2020-07-04 13:48:09
阅读次数:
75