Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio ...
分类:
其他好文 时间:
2019-11-17 12:31:52
阅读次数:
68
int pid = fork(); if (pid == -1 ) {//返回-1,说明fork失败 perror("fork"); exit(1); } else if (pid > 0) {//返回子进程pid,说明是父进程 } else if (pid == 0) {//返回0,说明是子进程 ...
分类:
系统相关 时间:
2019-11-16 23:05:58
阅读次数:
88
想学习 IdentityServer4 的身份服务器的开发,但正好处于 Net Core 发布 3.0,各种框架处于升级中。 IdentityServer4 尽提供了基础的功能,界面UI 需要扩展,或者购买商业咨询服务。Github 有几个扩展的项目,其中两个处于持续的更新中,包括升级 Net Co ...
分类:
其他好文 时间:
2019-11-16 10:45:02
阅读次数:
1247
https://zh.cppreference.com/w/cpp/memory/shared_ptr 引用计数 ...
分类:
其他好文 时间:
2019-11-16 10:37:28
阅读次数:
42
1、介绍 JSTL(JSP Standard Tag Library),JSP标准标签库,可以嵌入在jsp页面中使用标签的形式完成业务逻辑等功能。jstl出现的目的同el一样也是要代替jsp页面中的脚本代码。JSTL标准标签库有5个子库,但随着发展,目前常使用的是他的核心库。 2、使用 先在jsp界 ...
分类:
Web程序 时间:
2019-11-15 18:24:20
阅读次数:
102
//首先这是一个前沿 //我看了多的资料,还看了近半个小时的 android activity 的讲解 终于打出了apk //接下来开始 //一步一步的跟着我走 1.创建一个android项目或者一个modudle 其项目类型为android library !android library ! a ...
分类:
移动开发 时间:
2019-11-14 22:17:45
阅读次数:
124
今天接着上一篇的内容继续来学习安装运行mysql。建议先阅读第一篇: "windows安装docker" 一 查看mysql版本 如果想知道mysql镜像具体有哪几个版本,需要去docker hub查看。 地址如下: https://hub.docker.com/r/library/ 二 拉取mys ...
分类:
数据库 时间:
2019-11-14 09:48:25
阅读次数:
91
animejs https://animejs.com/ Anime.js (/?æn.?.me?/) is a lightweight JavaScript animation library with a simple, yet powerful API.It works with CSS pr ...
分类:
Web程序 时间:
2019-11-14 00:15:53
阅读次数:
146
django升级2.1python升级3.7时出现如下的错误: "trying to load '%s': %s" % (entry[1], e) django.template.library.InvalidTemplateLibrary: Invalid template library spe ...
分类:
编程语言 时间:
2019-11-13 00:32:24
阅读次数:
502