待办事项工具
.quadrant-container { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; margin: 20px 0; } .quadrant { border: 2px solid #333; padding: 15px; min-height: 200px; border-radius: 10px; color: white; } #q1 { background-color: #ff4d4d; } #q2 { background-color: orange; } #q3 { background-color: #4da6ff; } #q4 { background-color: #66cc66; } body { /* Butterfly 主题的 body 可能被包裹,改用局部背景 */ background:...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
CS61Bnote
CS61B NOTE2.Lists2.1引入1234567b的变化会影响a吗? Walrus a = new Walrus(1000, 8.3);Walrus b;b = a;b.weight = 5;System.out.println(a);System.out.println(b); 会。它是一个指向 引用类型123456789public static class Walrus { public int weight; public double tuskSize; public Walrus(int w, double ts) { weight = w; tuskSize = ts; }} 参数传递函数传递参数时,实际上只是在复制位。 数组实例化1x = new int[]{0, 1, 2, 95, 4}; 2.2...
测试文章
这是一个测试Hello Hexo!