除了以上的线程中的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();
}
}
还有数据库中的左外连接和右外连接。 |