上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: C 语言支持数组数据结构,它可以存储一个固定大小的相同类型元素的顺序集合。数组是用来存储一系列数据,但它往往被认为是一系列相同类型的变量。 数组的声明并不是声明一个个单独的变量,比如 runoob0、runoob1、...、runoob99,而是声明一个数组变量,比如 runoob,然后使用 run 阅读全文
posted @ 2021-06-30 10:02 def_Class 阅读(74) 评论(0) 推荐(0)
摘要: 解决Unknown error: Unable to build: the file dx.jar was not loaded from the SDK folder!最近渐渐迁移到Android Studio来了,更新过Android SDK Manager里的东西后,打开Eclipse Run 阅读全文
posted @ 2021-04-30 17:44 def_Class 阅读(1198) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-04-30 16:33 def_Class 阅读(88) 评论(0) 推荐(0)
摘要: 1.在项目文件比较多的情况下,为了方便查看整体和及时定位到项目文件,通常会同时使用Project Explorer视图与Package Explorer视图。 2.打开Project Explorer视图与Package Explorer视图。 a.打开Project Explorer视图:wind 阅读全文
posted @ 2021-04-30 14:11 def_Class 阅读(800) 评论(0) 推荐(0)
摘要: 在开发Python应用程序的时候,系统安装的Python3只有一个版本:3.4。所有第三方的包都会被pip安装到Python3的site-packages目录下。 如果我们要同时开发多个应用程序,那这些应用程序都会共用一个Python,就是安装在系统的Python 3。如果应用A需要jinja 2. 阅读全文
posted @ 2021-04-22 23:40 def_Class 阅读(68) 评论(0) 推荐(0)
摘要: 查看用户: net user查看当前用户: whoami 阅读全文
posted @ 2021-03-25 14:02 def_Class 阅读(2424) 评论(0) 推荐(0)
摘要: from django.shortcuts import render, HttpResponse from django.http import StreamingHttpResponse import os def index(request): return render(request,"i 阅读全文
posted @ 2021-03-01 14:07 def_Class 阅读(753) 评论(0) 推荐(0)
摘要: 树莓派配置固定IP地址 1、编辑文件/etc/dhcpcd.confroot@raspberrypi:~# vi /etc/dhcpcd.conf 2、修改以下参数配置,如果没有就在文件底部添加有线配置:interface eth0static ip_address=192.168.1.188/24 阅读全文
posted @ 2021-02-08 14:10 def_Class 阅读(667) 评论(0) 推荐(0)
摘要: 1、下载xrdp sudo apt-get install xrdp 2、重启服务 sudo service xrdp restart 3、远程桌面 阅读全文
posted @ 2021-01-28 15:04 def_Class 阅读(171) 评论(0) 推荐(0)
摘要: 树莓派做私有云盘-极简版(owncloud) 这里直接给出配置好私有云的镜像,只需烧录镜像后微改配置后即可使用 链接:https://pan.baidu.com/s/1EOQaSQso-0wmnuWgZKknZg 提取码:q26h 1、直接将此镜像烧录 系统登录用户名:pi 密码:yahboom 2、查看IP 3、私有云更换可信域名 找到con 阅读全文
posted @ 2021-01-28 14:33 def_Class 阅读(658) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 下一页