上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 十进制 二进制 1 十六进制 补码规则 1.计算机系统中,数值一律用二进制的补码来存储。 2.二进制的最高位是符号位,0是正(+); 1是负数(-); 3.正数的只是其本身,负数的只是最高位(符号位)不变,其他的位逐位取反,再加1 1101)_2 0011 4.两数相加,若最高位(符号位)有进位,则 阅读全文
posted @ 2019-12-26 14:34 徒步阳光855 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/material.dart'; 2 import 'package:my/dart_01.dart'; 3 4 void main(){ 5 runApp(new MaterialApp( 6 title: 'Stack 布局示例Alignment', 7 home: new MyApp(), 8 ))... 阅读全文
posted @ 2019-12-02 10:27 徒步阳光855 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/material.dart'; 2 3 class LayoutDemo extends StatelessWidget{ 4 @override 5 Widget build(BuildContext context) { 6 // TODO: implement build 7 return new Scaffold( 8 appBar: n 阅读全文
posted @ 2019-11-28 15:56 徒步阳光855 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/material.dart'; 2 3 class LayoutDemo extends StatelessWidget{ 4 @override 5 Widget build(BuildContext context) { 6 // TODO: implement build 7 return new Scaffold( 8 appBar: n 阅读全文
posted @ 2019-11-27 18:46 徒步阳光855 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/material.dart'; 2 3 class LayoutDemo extends StatelessWidget{ 4 @override 5 Widget build(BuildContext context) { 6 // TODO: implement build 7 return new ... 阅读全文
posted @ 2019-11-27 17:16 徒步阳光855 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/material.dart'; 2 3 void main() => runApp( 4 new MaterialApp( 5 title: 'Center居中布局', 6 home: new LayoutDemo(), 7 ), 8 ); 9 10 class LayoutDemo extends StatelessWidget{ 11 @ov 阅读全文
posted @ 2019-11-27 11:38 徒步阳光855 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/cupertino.dart'; 2 import 'package:flutter/material.dart'; 3 4 void main() =>runApp( 5 new MaterialApp( 6 title: 'Container布局容器示例', 7 home: new LayoutDemo(), 8 ) 9 ); 10 11 c 阅读全文
posted @ 2019-11-27 11:14 徒步阳光855 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 1 import 'package:flutter/cupertino.dart'; 2 import 'package:flutter/material.dart'; 3 4 void main(){ 5 runApp(new MyApp()); 6 } 7 8 class MyApp extends StatelessWidget{ 9 @ov... 阅读全文
posted @ 2019-11-26 11:42 徒步阳光855 阅读(539) 评论(0) 推荐(0) 编辑
摘要: flex-direction flex-direction: row | row-reverse | column | column-reverse; row(默认值):主轴为水平方向,起点在左端。 row-reverse:主轴为水平方向,起点在右端。 column: 。 column-revers 阅读全文
posted @ 2019-10-10 14:15 徒步阳光855 阅读(169) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/corolcorona/p/6678197.html https://blog.csdn.net/olanlanxiari/article/details/48086917 https://blog.csdn.net/u014259820/article/details/81023224X https://docs.brew.sh/Home... 阅读全文
posted @ 2019-09-16 08:45 徒步阳光855 阅读(240) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页