React 学习笔记
Notes for Front-End Web Development with React Course
Notes for React Documentation
环境配置
Setting up Git and Node
Install Yarn (Optional)
Yarn 是一个类似npm的包管理框架,具体安装步骤请参考此处。
Notes for Front-End Web Development with React Course
Notes for React Documentation
Yarn 是一个类似npm的包管理框架,具体安装步骤请参考此处。
参考文章:maven到底是个啥玩意~
Maven 是 Apache 下的一个纯 Java 开发的开源项目,简单来说是一个项目管理工具,核心功能是合理叙述项目间的依赖关系。
simple
—pom.xml 核心配置,项目根下
—src
—main
—java java源码目录
—resources java配置文件目录
—test
—java 测试源码目录
—resources 测试配置目录
图中有一个target目录,是因为将该java项目进行了编译,src/main/java下的源代码就会编译成.class文件放入target目录中,target就是输出目录。
##5.1 Deriving Grammars from Language Samples
Proper grammar design mirrors functional decomposition or top-down design
in the programming world.
file : «sequence of rows that are terminated by newlines» ;
file : «sequence of rows that are terminated by newlines» ;
row : «sequence of fields separated by commas» ;
field : «number or string» ;
#Chapter 2 The Big Picture
##2.1 Let’s Get Meta!
报错:
1 | Error:(19, 13) java: -source 1.5 中不支持 try-with-resources |
在网上查阅解决方法
1 | <properties> |