2005年09月08日 星期四 15:56
> Jerry wrote: > >>在 05-9-6,刀波儿<metallica_coo at yahoo.com.cn> 写道: > >>>PYTHON中如何实现象C中把函数中的值回传给参数(指针or引用). > > > > python中除了值对象(如:int)是直接赋值外,其他对象变量都是引用赋值的 > > 所以你可以很容易完成这个任务: > > > > x=1 > > y=1 > > > > def test(T): > > T[0] = 3 > > T[1] = 4 > > > > test( [x,y] ) > > Have you ever tried your code? > 不好意思,实在太粗心了:( 其实我的意图就是传个对象进去就行了(当然除了下面提到的immutable) limodou 大哥的方法用到了python属性动态添加,不错,我想应该是常用的方法 -- If U can see it, then U can do it If U just believe it, there's nothing to it I believe U can fly From Jetport at gmail.com
Zeuux © 2025
京ICP备05028076号