如何用java编写函数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用java编写函数?相关的知识,希望对你有一定的参考价值。
首先要知道什么是函数,说白了就是一个方法,比如1,
public void method()
// dosomeing
2,
public String metnod()
String str = "hello";
return str;
3,
public String metnod(String str)
str = "hello";
return str;
函数是由修饰符+返回值类型+方法名(参数)构成,
方法1,2,3的修饰符都是public,1的返回值类型是void,不用返回,没有参数
方法2的返回值是String,无参
方法3返回值是String,有参数 参考技术A 你这个题目就是一个累加,一个for循环就行了,return
sum就可以了
如何用 Java 编写 RSS 提要?
【中文标题】如何用 Java 编写 RSS 提要?【英文标题】:How to write an RSS feed with Java? 【发布时间】:2010-09-11 21:37:09 【问题描述】:我正在使用 Java,并且需要生成一个简单的、符合标准的 RSS 提要。我该怎么办?
【问题讨论】:
【参考方案1】:我推荐使用Rome:
// Feed header
SyndFeed feed = new SyndFeedImpl();
feed.setFeedType("rss_2.0");
feed.setTitle("Sample Feed");
feed.setLink("http://example.com/");
// Feed entries
List entries = new ArrayList();
feed.setEntries(entries);
SyndEntry entry = new SyndEntryImpl();
entry.setTitle("Entry #1");
entry.setLink("http://example.com/post/1");
SyndContent description = new SyndContentImpl();
description.setType("text/plain");
description.setValue("There is text in here.");
entry.setDescription(description);
entries.add(entry);
// Write the feed to XML
StringWriter writer = new StringWriter();
new SyndFeedOutput().output(feed, writer);
System.out.println(writer.toString());
【讨论】:
现在这似乎是一个死项目。该示例甚至无法编译! Rome 使用来自 com.sun.syndication.* 包的 java 类。这个解决方案现在太旧了。以上是关于如何用java编写函数?的主要内容,如果未能解决你的问题,请参考以下文章