由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - simple java question
相关主题
a simple java programming question[转载] Java 1.5 Generic 问题
一个event model的概念级的问题TIJ上写错了?
Java大侠们:Hashtable help please!overloading methods
Generics应该怎么得到它的class?怎样用class的string type name 动态生成object?
折腾了一天,实在是绝望了,请教请教Java练习题 12
java String关于Random怎么用?
一个Java程序员的话(3)问HashSet的问题?
A simple question请教一个多线程的问题
相关话题的讨论汇总
话题: string话题: s1话题: f2话题: str话题: pass
进入Java版参与讨论
1 (共1页)
s**n
发帖数: 178
1
f1()
{
String s1 = null;
f2(s1);
System.out.println(s1);
}
f2(String str)
{
str=f3();
}
In f2(), str can not pass back the string back to s1 in f1(), because of
pass-by-value. How to get the string from f2() besides using return?
g*****g
发帖数: 34805
2
just use return, or you can use collection or object wrapper.

【在 s**n 的大作中提到】
: f1()
: {
: String s1 = null;
: f2(s1);
: System.out.println(s1);
: }
: f2(String str)
: {
: str=f3();
: }

s**n
发帖数: 178
3
Thanks. In my case, I need get back two strings, I use string array to do it
. Is there any better ways?

【在 g*****g 的大作中提到】
: just use return, or you can use collection or object wrapper.
A**o
发帖数: 1550
4
define a structure (i.e. a pojo)

it

【在 s**n 的大作中提到】
: Thanks. In my case, I need get back two strings, I use string array to do it
: . Is there any better ways?

a****l
发帖数: 8211
5
return an object that contains this string, or pass in an object that
contains this string.

【在 s**n 的大作中提到】
: f1()
: {
: String s1 = null;
: f2(s1);
: System.out.println(s1);
: }
: f2(String str)
: {
: str=f3();
: }

c********g
发帖数: 449
6
用全局便量,或者用Vetor.
1 (共1页)
进入Java版参与讨论
相关主题
请教一个多线程的问题折腾了一天,实在是绝望了,请教请教
也问个 HashMap问题java String
java,多层map应该怎么写?求个葫芦一个Java程序员的话(3)
Which Web service is better EJB or RPCA simple question
a simple java programming question[转载] Java 1.5 Generic 问题
一个event model的概念级的问题TIJ上写错了?
Java大侠们:Hashtable help please!overloading methods
Generics应该怎么得到它的class?怎样用class的string type name 动态生成object?
相关话题的讨论汇总
话题: string话题: s1话题: f2话题: str话题: pass