- 博客(4)
- 收藏
- 关注
原创 the question for vue.js not detected...
对于vue的devtools开发工具,用起来的时候右上角那个V图标不亮,首先检查一下script标签引入的路径写对没有,及其项目里有没有vue.js 的Javascript jar包,哈哈哈哈,差点笑死<script src="vue.js" type="text/javascript" charset="UTF-8"></script>...
2021-11-29 19:58:48
9201
1
原创 gcc编译被多次定义,无法编译出目标文件,闪一下就退出
那天想学着老师的代码编写风格,改正自己的编码习惯,把全写main里的代码拆分成多个文件,并且在linux下用gcc编译,代码写完后,理所当然的编译不通过,哈哈哈,笑死,编译情况如下china@ubuntu:~/1/test4$ gcc -o hhh arraylist.c arraylist_test.c arraylist.c: In function ‘int_arraylist_init’:arraylist.c:19:3: warning: implicit declaration of f
2021-08-08 16:17:45
559
原创 顺序表中结构的大小,sizeof(),malloc_usable_size();
下面是顺序表的实现代码#include<stdio.h>struct int_arraylist{ int *elements; int count; int size;};#define LIST_INIT_SIZE 10int main(){ struct int_arraylist *list; struct int_arraylist t; int bytes1,bytes2; list=(struct int_arraylist *)malloc(si
2021-08-08 15:40:38
337
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人