0

在C中,您可以編寫像printf("Hello %s, how are you?\n", name)這樣的東西。什麼編程語言對佔位符使用#s?

爲此目的,什麼編程語言使用#s而不是%s

+0

沒有什麼有趣的http://codesearch.google.com/#search/&q=%5C%20%23s%5C%20&sq=&type=cs大作,除了C預'#var'將宏觀參數串聯起來。 –

回答

1

您可能會想到Ruby,它使用#{..}作爲字符串插值。

foo = 42 
puts "Hello #{foo}"  # this prints "Hello 42"