黑马程序员技术交流社区
标题:
关于join的用法 可以举个例子么?
[打印本页]
作者:
张静慈
时间:
2012-3-31 16:58
标题:
关于join的用法 可以举个例子么?
关于join的用法 可以举个例子么?
作者:
Kristy_Li
时间:
2012-3-31 17:19
在一个线程中调用join()方法,作用是把这个调用对象所对应的线程合并到目前所在的线程,使这两个线程交替运行!
public class JoinThread
{
public static void main(String[] args)
{
ThreadTest t=new ThreadTest();
Thread pp=new Thread(t);
pp.start();
pp.join;//我们把pp所对应的线程合并到调用pp.join()语句的线程中
}
}
class ThraedTest implements Runnable
{
public void run()
{
....................
}
}
作者:
莫洪刚
时间:
2012-3-31 18:27
除了以上的线程中的join方法,还有
Javascript中的数组中的jion方法
<script type="text/javascript">
window.onload = function () {
var arr = ["one", "two", "three", "four", "five", "six"];
alert(arr); //默认打印one, two,three,four,five,six
alert(arr.join('---')); //输出one---two---three---four---five---six
}
</script>
C#中的String类中的join方法
class Program
{
static void Main(string[] args)
{
string[] strArr = new string[6] { "one", "two", "three", "four", "five", "six" };
string joinString = string.Join("---", strArr);
Console.WriteLine(joinString);//输出one---two---three---four---five---six
Console.ReadKey();
}
}
还有数据库中的左外连接和右外连接。
作者:
张世豪
时间:
2012-3-31 21:46
C:\Users\Administrator\Desktop\Join用法案例.png如果是string类里面的join的话,它是这样用的string join(string separator,string[] value),意思是把字符串value在当前字符串中用指定的分隔符separator连接,返回连接后的字符串。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2