老师你好
1.to_dict这个方法视频里演示的时候并没有加self,程序一样可以正常运行,为什么我这里没加self这个就会报错的?
2.添加完视频中的这个t_menu模型之后我运行前台页面登录的时候报了个服务器错误。
老师讲义能发一分么
为啥这里第一个可以直接用中文作为别名???????????????????????????????????????????
老师,网络编程这部分重要吗?我怎么学到后期,几乎就没有用到网络编程的知识,我还需要花大量的时间在这个地方复习吗?
package com.ITbaizhan.test; import java.util.Arrays; public class testBinarySearch { public static void main(String[] args) { int[] arr ={1,5,9,7,6,3,2,8,4}; int searchword =4; int a =binarysearch(arr,searchword); System.out.println(a); } public static int binarysearch(int[] array,int value){ int low =0; int high = array.length-1; while(low<=high){ int middle =(low+high)/2; if (value==array[middle]){ return middle; } if(value<array[middle]) { high =middle-1; }if(value>array[middle]){ low=middle+1; } }return -1; } }
老师,为什么我数组最后一个4,搜索不出来
是单元格1,1的值 等于d这么理解么?
这个也没有添加数据的方法 就是一个for循环的遍历然后 sh.cell(i+1,1).value=d 就添加到Excel表中了?
这个sh.cell(i+1,1).value=d 语句怎么去理解啊? 把d的值赋给了 sh.cell(i+1,1).value?他俩不是相等的么?怎么会添加到Excel表中呢?
老师,这是什么问题
老师我想问下为什么吗运行过程中会一直输出“飞机死了”,不是应该执行peng才输出吗
请问老师,在pycharm中搭建spark环境的时候,需要安装jdk,还需要安装hadoop吗?将JAVA_HOM配置在环境变量时,是配置到根目录还是配置到bin目录?
老师 这边文件上传 是什么时候开始的呢 我页面跳转失败 但是文件也上传成功了
运行代码:
System.out.println("----单例集合的交集操作"); List<String> a1=new ArrayList<>(); a1.add("a"); a1.add("b"); a1.add("c"); a1.add("d"); List<String> b1=new ArrayList<>(); boolean falg8 = a1.retainAll(b1); System.out.println(falg8); //并集输出的是A与B相同的元素 for(String str2:a1){ System.out.println(str2); }
a1集和中的元素:a、b、c、d
b1集合为空
运行结果:
疑问:a1与b1没有交集,为什么flag8=true,那么flag8什么时候等于false
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/cache" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd"> <!--配置注解扫描--> <context:component-scan base-package="controller,interceptor"/> <!--配置注解驱动--> <mvc:annotation-driven/> <!--配置视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> <!--配置拦截器--> <mvc:interceptors> <!--配置全局拦截器--> <bean class="interceptor.MyInterceptor"/> <mvc:interceptor> <!--mapping: 配置拦截器的作用路径--> <mvc:mapping path="/**"/> </mvc:interceptor> </mvc:interceptors> </beans>
引入了mvc标签但是使用不了什么原因,说检测不到
为什么float类型可以给数值赋值Long型常量?我不是太懂~我可以理解为只要float型或者double型赋值是整数,即使是浮点型也可以添加在数值范围内对应的整数类型去声明,比如 int型或者long型。就是我不是太理解,是不是浮点型可以填写包括了整数(就是整型常数)和精确到float的7位或double的7位两倍的声明呢?
关键字放在那个类里面的 return 给谁? 给服务器吗
非常抱歉给您带来不好的体验!为了更深入的了解您的学习情况以及遇到的问题,您可以直接拨打投诉热线:
我们将在第一时间处理好您的问题!
关于
课程分类
百战程序员微信公众号
百战程序员微信小程序
©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园网站维护:百战汇智(北京)科技有限公司 京公网安备 11011402011233号 京ICP备18060230号-3 营业执照 经营许可证:京B2-20212637