Ingredient::getIngredientId报错,错误信息:Non-static method cannot be referenced from a static context

时间: 2024-06-16 13:08:31 浏览: 86
Ingredient::getIngredientId报错的原因是非静方法不能从静态上下文中引用。这意味着你在一个静态方法中尝试调用了一个非静态方法。 在面向对象编程中,静态方法是属于类的,而非静态方法是属于类的实例的。静态方法可以直接通过类名调用,而非静态方法需要通过类的实例来调用。 解决这个问题的方法是,要么将调用该方法的方法也设置为非静态方法,要么将被调用的方法设置为静态方法。具体取决于你的需求和设计。
相关问题

如何打印使"Dinner with ingredient:" + ingredient.getName() + "-" + ingredient.getPrice() + "; Total bill" + totalBill中"Dinner with ingredient:"只有一遍

你可以使用一个标志变量,例如 `printHeader`,来判断是否需要打印 "Dinner with ingredient:"。在第一次打印时将其设置为 `True`,之后就不再打印。以下是伪代码示例: ``` printHeader = True for ingredient in ingredients: if printHeader: print("Dinner with ingredient:") printHeader = False print(ingredient.getName() + "-" + ingredient.getPrice()) print("Total bill " + totalBill) ```

解释这段代码@Override public Iterable<Ingredient> findAll() ( return jdbc,query("select id, name, type from Ingredient", this::mapRowToIngredient); }的 this::mapRowToIngredient

这段代码是一个 Java 8 中的 Lambda 表达式,它的作用是将数据库中的数据映射为 Ingredient 对象。this::mapRowToIngredient 表示将当前对象的 mapRowToIngredient 方法作为参数传递给 query 方法,query 方法会在查询结果中的每一行数据上调用 mapRowToIngredient 方法,将其转换为 Ingredient 对象。这样,findAll 方法就可以返回一个包含所有 Ingredient 对象的 Iterable。
阅读全文

相关推荐

import random # sandwich ingredients and their associated calories ingredients = { "Bread": 100, "Ham": 150, "Lettuce": 10, "Tomato": 20, "Mayonnaise": 50, "Cheese": 120 } # prompt user for calorie range min_calories = int(input("Enter minimum calories: ")) max_calories = int(input("Enter maximum calories: ")) # calculate the minimum and maximum calories for the sandwich min_sandwich_calories = 2 * ingredients["Bread"] + min(ingredients.values()) * 2 max_sandwich_calories = 2 * ingredients["Bread"] + max(ingredients.values()) * 2 # check if the calorie range is valid if max_calories < min_sandwich_calories: print("Sorry, it is impossible to create a sandwich within the given calorie range.") else: # create the sandwich sandwich = ["Bread", "Bread"] sandwich_calories = 2 * ingredients["Bread"] while sandwich_calories < min_calories: # add random ingredient ingredient = random.choice(list(ingredients.keys())) sandwich.append(ingredient) sandwich_calories += ingredients[ingredient] while sandwich_calories <= max_calories: # add random ingredient ingredient = random.choice(list(ingredients.keys())) # check if the ingredient is the same as the previous one if len(sandwich) >= 3 and ingredient == sandwich[-2]: continue sandwich.append(ingredient) sandwich_calories += ingredients[ingredient] # check if the sandwich is already at the maximum calorie limit if sandwich_calories == max_sandwich_calories: break # add the last slice of bread sandwich.append("Bread") # print the sandwich and its total calories print("Your sandwich:", sandwich) print("Total calories:", sandwich_calories)

namespace SandwichCalories { class Program { static void Main(string[] args) { // sandwich ingredients and their associated calories Dictionary<string, int> ingredients = new Dictionary<string, int>() { { "Bread", 100 }, { "Ham", 150 }, { "Lettuce", 10 }, { "Tomato", 20 }, { "Mayonnaise", 50 }, { "Cheese", 120 } }; // prompt user for calorie range Console.Write("Enter minimum calories: "); int min_calories = int.Parse(Console.ReadLine()); Console.Write("Enter maximum calories: "); int max_calories = int.Parse(Console.ReadLine()); // calculate the minimum and maximum calories for the sandwich int min_sandwich_calories = 2 * ingredients["Bread"] + ingredients.Values.Min() * 2; int max_sandwich_calories = 2 * ingredients["Bread"] + ingredients.Values.Max() * 2; // check if the calorie range is valid if (max_calories < min_sandwich_calories) { Console.WriteLine("Sorry, it is impossible to create a sandwich within the given calorie range."); } else { // create the sandwich List<string> sandwich = new List<string> { "Bread", "Bread" }; int sandwich_calories = 2 * ingredients["Bread"]; while (sandwich_calories < min_calories) { // add random ingredient string ingredient = ingredients.Keys.ElementAt(new Random().Next(ingredients.Count)); sandwich.Add(ingredient); sandwich_calories += ingredients[ingredient]; } while (sandwich_calories <= max_calories) { // add random ingredient string ingredient = ingredients.Keys.ElementAt(new Random().Next(ingredients.Count)); // check if the ingredient is the same as the previous one if (sandwich.Count >= 3 && ingredient == sandwich[sandwich.Count - 2]) { continue; } sandwich.Add(ingredient); sandwich_calories += ingredients[ingredient]; // check if the sandwich is already at the maximum calorie limit if (sandwich_calories == max_sandwich_calories) { break; } } // add the last slice of bread sandwich.Add("Bread"); // print the sandwich and its total calories Console.WriteLine("Your sandwich: " + string.Join(", ", sandwich)); Console.WriteLine("Total calories: " + sandwich_calories); } } } } 改进代码

不使用LINQ查询和操作集合 改进代码 namespace SandwichCalories { class Program { static void Main(string[] args) { // sandwich ingredients and their associated calories Dictionary<string, int> ingredients = new Dictionary<string, int>() { { "Bread", 100 }, { "Ham", 150 }, { "Lettuce", 10 }, { "Tomato", 20 }, { "Mayonnaise", 50 }, { "Cheese", 120 } }; // prompt user for calorie range Console.Write("Enter minimum calories: "); int min_calories = int.Parse(Console.ReadLine()); Console.Write("Enter maximum calories: "); int max_calories = int.Parse(Console.ReadLine()); // calculate the minimum and maximum calories for the sandwich int min_sandwich_calories = 2 * ingredients["Bread"] + ingredients.Values.Min() * 2; int max_sandwich_calories = 2 * ingredients["Bread"] + ingredients.Values.Max() * 2; // check if the calorie range is valid if (max_calories < min_sandwich_calories) { Console.WriteLine("Sorry, it is impossible to create a sandwich within the given calorie range."); } else { // create the sandwich List<string> sandwich = new List<string> { "Bread", "Bread" }; int sandwich_calories = 2 * ingredients["Bread"]; while (sandwich_calories < min_calories) { // add random ingredient string ingredient = ingredients.Keys.ElementAt(new Random().Next(ingredients.Count)); sandwich.Add(ingredient); sandwich_calories += ingredients[ingredient]; } while (sandwich_calories <= max_calories) { // add random ingredient string ingredient = ingredients.Keys.ElementAt(new Random().Next(ingredients.Count)); // check if the ingredient is the same as the previous one if (sandwich.Count >= 3 && ingredient == sandwich[sandwich.Count - 2]) { continue; } sandwich.Add(ingredient); sandwich_calories += ingredients[ingredient]; // check if the sandwich is already at the maximum calorie limit if (sandwich_calories == max_sandwich_calories) { break; } } // add the last slice of bread sandwich.Add("Bread"); // print the sandwich and its total calories Console.WriteLine("Your sandwich: " + string.Join(", ", sandwich)); Console.WriteLine("Total calories: " + sandwich_calories); } } } }

最新推荐

recommend-type

Head First SQL 中文版 Page 58-63

在SQL语言中,查询数据时,我们经常使用`SELECT`语句来指定我们想要获取的信息。标题提到的“Head First SQL”是一本非常受欢迎的SQL学习书籍,而这里讨论的是第58至63页的内容,主要涉及如何避免在查询时选择所有列...
recommend-type

若依管理存在任何文件读取漏洞检测系统,渗透测试.zip

若依管理存在任何文件读取漏洞检测系统,渗透测试若一管理系统发生任意文件读取若依管理系统存在任何文件读取免责声明使用本程序请自觉遵守当地法律法规,出现一切后果均与作者无关。本工具旨在帮助企业快速定位漏洞修复漏洞,仅限安全授权测试使用!严格遵守《中华人民共和国网络安全法》,禁止未授权非法攻击站点!由于作者用户欺骗造成的一切后果与关联。毒品用于非法一切用途,非法使用造成的后果由自己承担,与作者无关。食用方法python3 若依管理系统存在任意文件读取.py -u http://xx.xx.xx.xxpython3 若依管理系统存在任意文件读取.py -f url.txt
recommend-type

【java毕业设计】学生社团管理系统源码(完整前后端+说明文档+LW).zip

学生社团的管理系统,是一款功能丰富的实用性网站,网站采用了前台展示后台管理的模式进行开发设计的,系统前台包括了站内新闻展示,社团信息管理以及社团活的参与报名,在线用户注册,系统留言板等实用性功能。 网站的后台是核心,针对系统的前台的功能,学生的社团报名审核以及社团信息的发布等功能进行管理。本系统可以综合成为4个用户权限,普通注册用户,社团团员用户,社团长以及系统管理员。系统管理员主要负责网站的整体信息管理,普通用户可以进行社团活动的浏览以及申社团的加入,社团团员是普通注册用户审核成功后的一个用户权限。经过管理员审核同意,社团团员可以升级成为社团的团长,系统权限划分是本系统的核心功能。 环境说明: 开发语言:Java,jsp JDK版本:JDK1.8 数据库:mysql 5.7 数据库工具:Navicat11 开发软件:eclipse/idea 部署容器:tomcat
recommend-type

Python中快速友好的MessagePack序列化库msgspec

资源摘要信息:"msgspec是一个针对Python语言的高效且用户友好的MessagePack序列化库。MessagePack是一种快速的二进制序列化格式,它旨在将结构化数据序列化成二进制格式,这样可以比JSON等文本格式更快且更小。msgspec库充分利用了Python的类型提示(type hints),它支持直接从Python类定义中生成序列化和反序列化的模式。对于开发者来说,这意味着使用msgspec时,可以减少手动编码序列化逻辑的工作量,同时保持代码的清晰和易于维护。 msgspec支持Python 3.8及以上版本,能够处理Python原生类型(如int、float、str和bool)以及更复杂的数据结构,如字典、列表、元组和用户定义的类。它还能处理可选字段和默认值,这在很多场景中都非常有用,尤其是当消息格式可能会随着时间发生变化时。 在msgspec中,开发者可以通过定义类来描述数据结构,并通过类继承自`msgspec.Struct`来实现。这样,类的属性就可以直接映射到消息的字段。在序列化时,对象会被转换为MessagePack格式的字节序列;在反序列化时,字节序列可以被转换回原始对象。除了基本的序列化和反序列化,msgspec还支持运行时消息验证,即可以在反序列化时检查消息是否符合预定义的模式。 msgspec的另一个重要特性是它能够处理空集合。例如,上面的例子中`User`类有一个名为`groups`的属性,它的默认值是一个空列表。这种能力意味着开发者不需要为集合中的每个字段编写额外的逻辑,以处理集合为空的情况。 msgspec的使用非常简单直观。例如,创建一个`User`对象并序列化它的代码片段显示了如何定义一个用户类,实例化该类,并将实例序列化为MessagePack格式。这种简洁性是msgspec库的一个主要优势,它减少了代码的复杂性,同时提供了高性能的序列化能力。 msgspec的设计哲学强调了性能和易用性的平衡。它利用了Python的类型提示来简化模式定义和验证的复杂性,同时提供了优化的内部实现来确保快速的序列化和反序列化过程。这种设计使得msgspec非常适合于那些需要高效、类型安全的消息处理的场景,比如网络通信、数据存储以及服务之间的轻量级消息传递。 总的来说,msgspec为Python开发者提供了一个强大的工具集,用于处理高性能的序列化和反序列化任务,特别是当涉及到复杂的对象和结构时。通过利用类型提示和用户定义的模式,msgspec能够简化代码并提高开发效率,同时通过运行时验证确保了数据的正确性。"
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

STM32 HAL库函数手册精读:最佳实践与案例分析

![STM32 HAL库函数手册精读:最佳实践与案例分析](https://khuenguyencreator.com/wp-content/uploads/2020/07/bai11.jpg) 参考资源链接:[STM32CubeMX与STM32HAL库开发者指南](https://wenku.csdn.net/doc/6401ab9dcce7214c316e8df8?spm=1055.2635.3001.10343) # 1. STM32与HAL库概述 ## 1.1 STM32与HAL库的初识 STM32是一系列广泛使用的ARM Cortex-M微控制器,以其高性能、低功耗、丰富的外设接
recommend-type

如何利用FineReport提供的预览模式来优化报表设计,并确保最终用户获得最佳的交互体验?

针对FineReport预览模式的应用,这本《2020 FCRA报表工程师考试题库与答案详解》详细解读了不同预览模式的使用方法和场景,对于优化报表设计尤为关键。首先,设计报表时,建议利用FineReport的分页预览模式来检查报表的布局和排版是否准确,因为分页预览可以模拟报表在打印时的页面效果。其次,通过填报预览模式,可以帮助开发者验证用户交互和数据收集的准确性,这对于填报类型报表尤为重要。数据分析预览模式则适合于数据可视化报表,可以在这个模式下调整数据展示效果和交互设计,确保数据的易读性和分析的准确性。表单预览模式则更多关注于表单的逻辑和用户体验,可以用于检查表单的流程是否合理,以及数据录入
recommend-type

大学生社团管理系统设计与实现

资源摘要信息:"基于ssm+vue的大学生社团管理系统.zip" 该系统是基于Java语言开发的,使用了ssm框架和vue前端框架,主要面向大学生社团进行管理和运营,具备了丰富的功能和良好的用户体验。 首先,ssm框架是Spring、SpringMVC和MyBatis三个框架的整合,其中Spring是一个全面的企业级框架,可以处理企业的业务逻辑,实现对象的依赖注入和事务管理。SpringMVC是基于Servlet API的MVC框架,可以分离视图和模型,简化Web开发。MyBatis是一个支持定制化SQL、存储过程以及高级映射的持久层框架。 SpringBoot是一种全新的构建和部署应用程序的方式,通过使用SpringBoot,可以简化Spring应用的初始搭建以及开发过程。它使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。 Vue.js是一个用于创建用户界面的渐进式JavaScript框架,它的核心库只关注视图层,易于上手,同时它的生态系统也十分丰富,提供了大量的工具和库。 系统主要功能包括社团信息管理、社团活动管理、社团成员管理、社团财务管理等。社团信息管理可以查看和编辑社团的基本信息,如社团名称、社团简介等;社团活动管理可以查看和编辑社团的活动信息,如活动时间、活动地点等;社团成员管理可以查看和编辑社团成员的信息,如成员姓名、成员角色等;社团财务管理可以查看和编辑社团的财务信息,如收入、支出等。 此外,该系统还可以通过微信小程序进行访问,微信小程序是一种不需要下载安装即可使用的应用,它实现了应用“触手可及”的梦想,用户扫一扫或者搜一下即可打开应用。同时,它也实现了应用“用完即走”的理念,用户不用关心是否安装太多应用的问题。应用将无处不在,随时可用,但又无需安装卸载。 总的来说,基于ssm+vue的大学生社团管理系统是一款功能丰富、操作简便、使用方便的社团管理工具,非常适合大学生社团的日常管理和运营。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

STM32 HAL库深度解析:新手到高手的进阶之路

![STM32 HAL库深度解析:新手到高手的进阶之路](https://img-blog.csdnimg.cn/20210526014326901.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xjemRr,size_16,color_FFFFFF,t_70) 参考资源链接:[STM32CubeMX与STM32HAL库开发者指南](https://wenku.csdn.net/doc/6401ab9dcce7214c316e8df