由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - property vs field
相关主题
问一下这个cast在java里是怎么work的c++ covariant type(受不了C++啦!!!)
【讨论】问一道很简单的C++题。。。。 (转载)再来一个C++模板问题
问一个inheritance的初级问题题2
请教C++类设计问题请教一个static 函数的问题
question about C++ class问个C++ virtual function的问题 (转载)
A C++ inheritance question!考考大家,其实也不只是C++,C#/Java也一样
[合集] can one type cast reference in C++请问matlab的class
class D:public B;请教一个MS Linked List的问题
相关话题的讨论汇总
话题: abc话题: public话题: int话题: class话题: property
进入Programming版参与讨论
1 (共1页)
G***G
发帖数: 16778
1
public class ABC()
{
private int b;
public int A;
public int B
{
get
{
return b;
}
set
{
b = value;
}
}
class ABC()
{
b = 5; //请问如果换成B=5也正确。那么b=5和B=5,哪个更好?
}
}
l*******b
发帖数: 2586
2
public b;
不好么

【在 G***G 的大作中提到】
: public class ABC()
: {
: private int b;
: public int A;
: public int B
: {
: get
: {
: return b;
: }

1 (共1页)
进入Programming版参与讨论
相关主题
请教一个MS Linked List的问题question about C++ class
Quick Q: data member class's dtor orderA C++ inheritance question!
Python 如何自动import multiple files[合集] can one type cast reference in C++
RegEx puzzleclass D:public B;
问一下这个cast在java里是怎么work的c++ covariant type(受不了C++啦!!!)
【讨论】问一道很简单的C++题。。。。 (转载)再来一个C++模板问题
问一个inheritance的初级问题题2
请教C++类设计问题请教一个static 函数的问题
相关话题的讨论汇总
话题: abc话题: public话题: int话题: class话题: property