#include <iostream> #include <stdlib.h> using namespace std; typedef int DataType; //使int重命名为DataType DataType flag = 0; //flag是用来判断神魔时候输入数据结束 typedef ...
分类:
其他好文 时间:
2021-02-06 11:52:00
阅读次数:
0
今日学习:《机器学习十讲》第六讲,考研择校相关信息处理。 scala学习: package com.chapter01.datatype object TypeDemo02 { def main(args: Array[String]): Unit = { println("Long的最大值:" + ...
分类:
其他好文 时间:
2021-02-02 11:23:01
阅读次数:
0
数组是相同类型数据的有序集合,其中每一个数据称作一个数组元素,每哥数组元素可以通过一个下标来访问它们 首选必须声明数组变量,才能在程序中使用数组。声明数组变量的语法: dataType[] arrayRefVar; 创建数组语法如下 dataType[] arrayRefVar = new data ...
分类:
编程语言 时间:
2021-02-02 10:39:20
阅读次数:
0
#AJAX 不写原生js的AJAX,用JQuery $.ajax({ type: get, url: "demo.html", data: {username:lw}, dataType: ..., success: function(msg){ alert(msg); }, error:funct ...
分类:
Web程序 时间:
2021-01-28 12:11:32
阅读次数:
0
运算符有不同的优先级,所谓优先级就是表达式运算中的运算顺序。如右表,上一行运算符总优先于下一行。只有单目运算符、三元运算符、赋值运算符是从右向左运算的。.(){};,R->L++--~!(datatype)L->R/%L->R+-L->R<<>>>>>L->R<><==>==instanceof-&g
分类:
编程语言 时间:
2020-11-06 02:25:06
阅读次数:
22
树形菜单 $(function () { $.ajax({ url: window.location.protocol + '//' + window.location.host + '/Home/Menu', data: null, type: 'post', dataType: 'json', ...
分类:
其他好文 时间:
2020-11-06 02:16:29
阅读次数:
25
package redis.config; import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.connection.DataType;import o ...
分类:
其他好文 时间:
2020-10-31 02:05:49
阅读次数:
14
嵌套文件 有个方法 var a = add_answer(is_correct,select_answer,'',1);方法里面 var obj = ''; //注意要点 $.ajax({ url: "{{url('/answer.html')}}", type: 'post', dataType: ...
分类:
Web程序 时间:
2020-10-16 10:44:41
阅读次数:
25
使用SVN更新项目,出现了Checksum mismatch的错误。 解决方法: 1) 启动命令行,CD至出问题文件所在的目录。 2) 执行:svn update –set-depth empty 3) 执行:svn update –set-depth infinity ...
分类:
其他好文 时间:
2020-09-24 21:45:08
阅读次数:
44
$.ajax({ url:"{:url('user')}", data:{"group_id":data.value}, type:'post', dataType:'json', success:function (res) { console.log(res); for(var i=0;i<re ...
分类:
Web程序 时间:
2020-09-18 02:35:27
阅读次数:
50