logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

java注解

java注解何为注解内置注解注解的定义及使用注解处理器注解元素何为注解也称为元数据,为在代码中添加信息提供一种形式化的方法,使我们可以在稍后某个时刻非常方便地使用这些数据。将元数据和源代码二建结合起来,而不是保存在外部文档中。能够提供更加干净易读的代码以及编译期类型检查。内置注解@Override:表示当前方法定义将覆盖超类中的方法@Deprecated:使用此注解,编译器会发出警告信...

#java#后端开发
mac使用git突然报错xcrun: error: invalid active developer path

mac使用git突然报错,结果如下:xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

mac使用git报错xcrun: error: invalid active developer path

mac使用git突然报错,结果如下:xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

python matplotlib 画图刻度、图例等字体、字体大小、刻度密度、线条样式设置

设置输出的图片大小:figsize = 11,9figure, ax = plt.subplots(figsize=figsize)画简单的折线图,同时标注线的形状、名称、粗细:A,=plt.plot(x1,y1,'-r',label='A',linewidth=5.0,ms=10)其中线条样式以及颜色设置可参考:https://blog....

#python#matplotlib
到底了