在这里插入图片描述
什么是变量:变量就是一些数据 如125,‘字符串数据’ 通过一个符号来表示
变量的定义 方法
let 变量名:变量类型 = ’ 各种数据’ ,let是关键字,系统给的用来定义变量的
let name: string ='张亚洲';
let age: number =25;
let isTure: Boolean= true;
console.log('姓名',name);
console.log('年龄',age);//输出到日志
console.log('是否是男人',isTure);下面的是程序入口,不要管它,后期会学到这里,运行的话 ,打开预览器,在最右面的边上
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/1e7b7171644442fc86728a924f878bab.png#pic_center)@Entry
@Component
struct Index {@State message: string = 'Hello World';build() {Row() {Column() {Text(this.message).fontSize(50).fontWeight(FontWeight.Bold)}.width('100%')}.height('100%')}
}