logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

图片url地址的生成获取方法

图片url地址的生成获取方法  在写博客插入图片时,许多时候需要提供图片的url地址。作为菜鸡的我,自然是一脸懵逼。那么什么是所谓的url地址呢?又该如何获取图片的url地址呢?  首先来看一下度娘对url地址的解释:url是统一资源定位符,对可以从互联网上得到的资源的位置和访问方法的一种简洁的表示,是互联网上标准资源的地址。互联网上的每个文件都有一个唯一的url,它包含的信息指出文件的位置以及浏

Git提示Another git process seems to be running in this repository, e.g. an editor opened by ....错误

Another git process seems to be running in this repository, e.g. an editor opened by ‘git commit’. Please make sure all processes are terminated then try again. If it still fails, a git process may ha

C语言strcat()函数

strcat()函数的作用就是将俩段字符串进行连接,代码如下:#include <stdio.h>#include <string.h>int main(void){char a[5] = "1234";char b[5] = "56";char c[5];strcat(a,b);printf("%s\n",a);printf("%s\n",b);printf("%s\n"

暂无文章信息