摘要: 我是一名软件工程专业的学生,目前正在攻读本科学位。我对计算机科学和软件开发充满热情,并希望通过不断学习和实践,成为一名优秀的软件工程师。以下是我的现状、经验以及未来的计划。目前,我正在大学学习软件工程相关课程,涵盖了编程语言、数据结构、算法、数据库、操作系统、软件设计模式等核心知识。除了课堂学习,我 阅读全文
posted @ 2025-03-07 13:19 吉尼泰梅 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 课堂测试 帮我做一个仓储管理系统原型系统,要求: 1:该系统支持多个仓库的设立。 2:统一设立物资台账,物资台账需包含物资编码、物资名称、规格、材质、供应商、品牌、物资分类,用户可以自定义物资的物资分类。需限制不同的物资名称、规格、材质的物资不能设立相同的物资编码。 3:仓库人员可进行入库作业、出库 阅读全文
posted @ 2025-03-07 13:15 吉尼泰梅 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 使用 StringBuilder public class StringConcatenationWithStringBuilder { public static void main(String[] args) { String str1 = "Hello"; String str2 = " W 阅读全文
posted @ 2025-02-20 20:02 吉尼泰梅 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 使用 concat() 方法 public class StringConcatenationWithConcat { public static void main(String[] args) { String str1 = "Hello"; String str2 = " World"; // 阅读全文
posted @ 2025-02-20 20:02 吉尼泰梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 将一个字符串加在另一个字符串末尾并覆盖 public class StringConcatenationWithPlus { public static void main(String[] args) { String str1 = "Hello"; String str2 = " World"; 阅读全文
posted @ 2025-02-20 20:01 吉尼泰梅 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 使用 StringBuilder public class StringConcatenationUsingStringBuilder { public static void main(String[] args) { String str1 = "Hello"; String str2 = " 阅读全文
posted @ 2025-02-20 20:00 吉尼泰梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 使用 concat() 方法 public class StringConcatenationUsingConcat { public static void main(String[] args) { String str1 = "Hello"; String str2 = " World"; / 阅读全文
posted @ 2025-02-20 20:00 吉尼泰梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 将一个字符串加在另一个字符串末尾,不覆盖 public class StringConcatenationUsingPlus { public static void main(String[] args) { String str1 = "Hello"; String str2 = " World 阅读全文
posted @ 2025-02-20 20:00 吉尼泰梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 递归方式 public class MaxInArrayRecursive { public static void main(String[] args) { int[] array = {12, 45, 67, 23, 9, 55}; int max = findMaxRecursive(arr 阅读全文
posted @ 2025-02-20 19:58 吉尼泰梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Java 8 的 Stream API import java.util.Arrays; public class MaxInArrayWithStream { public static void main(String[] args) { int[] array = {12, 45, 67, 2 阅读全文
posted @ 2025-02-20 19:58 吉尼泰梅 阅读(2) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示